Specifications
Sun Services
Java™ Programming Language
Module 6, slide 38 of 43
Copyright 2005 Sun Microsystems, Inc. All Rights Reserved. Sun Services, Revision F
An equals Example
1 class TestEquals {
2 public static void main(String[] args) {
3 MyDate date1 = new MyDate(14, 3, 1976);
4 MyDate date2 = new MyDate(14, 3, 1976);
5
6 if ( date1 == date2 ) {
7 System.out.println("date1 is identical to date2");
8 } else {
9 System.out.println("date1 is not identical to date2");
10 }
11
12 if ( date1.equals(date2) ) {
13 System.out.println("date1 is equal to date2");
14 } else {
15 System.out.println("date1 is not equal to date2");
16 }










