13 lines
255 B
Java
13 lines
255 B
Java
//: operators/EqualsMethod.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
|
|
public class EqualsMethod {
|
|
public static void main(String[] args) {
|
|
Integer n1 = 47;
|
|
Integer n2 = 47;
|
|
System.out.println(n1.equals(n2));
|
|
}
|
|
} /* Output:
|
|
true
|
|
*///:~
|