OnJava8-Examples/operators/Equivalence.java

15 lines
288 B
Java
Raw Normal View History

2015-06-15 17:47:35 -07:00
//: operators/Equivalence.java
// <20>2015 MindView LLC: see Copyright.txt
public class Equivalence {
public static void main(String[] args) {
Integer n1 = 47;
Integer n2 = 47;
System.out.println(n1 == n2);
System.out.println(n1 != n2);
}
} /* Output:
true
false
*///:~