java.lang.Enum.equals() 如果指定的物件等於此列舉常數方法返回true。
以下是java.lang.Enum.equals()方法的宣告
public final boolean equals(Object other)
other -- 這是與此物件進行相等比較的物件。
如果指定的物件等於此列舉常數此方法返回true。
NA
下面的例子顯示java.lang.Enum.equals()方法的使用。
package com.yiibai; import java.lang.*; // enum showing topics covered under Tutorials enum Tutorials { topic1, topic2, topic3; } public class EnumDemo { public static void main(String args[]) { Tutorials t1, t2, t3; t1 = Tutorials.topic1; t2 = Tutorials.topic2; t3 = Tutorials.topic3; if(t1.equals(t2)) { System.out.println(t1 + " is equal to " + t2); } else if(t2.equals(t3)) { System.out.println(t2 + " is equal to " + t3); } else if(t1.equals(t3)) { System.out.println(t1 + " is equal to " + t3); } else { System.out.println("all 3 topics are different"); } } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
all 3 topics are different