Java - 枚举 equals() 方法



描述

java Enum equals() 方法如果指定的对象等于此枚举常量,则返回 true。

声明

以下是 java.lang.Enum.equals() 方法的声明

public final boolean equals(Object other)

参数

other − 这是要与此对象进行相等性比较的对象。

返回值

如果指定的对象等于此枚举常量,则此方法返回 true。

异常

比较枚举值是否相等示例

以下示例演示了对同一枚举类型的各种枚举值使用 equals() 方法的情况,其中所有提供的枚举都是唯一的。

package com.tutorialspoint;

// enum showing topics covered under Tutorials
enum Tutorials {  
   Java, HTML, Python; 
} 
 
public class EnumDemo { 

   public static void main(String args[]) {
 
      Tutorials t1, t2, t3; 
    
      t1 = Tutorials.Java; 
      t2 = Tutorials.HTML; 
      t3 = Tutorials.Python; 
    
      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

比较枚举值是否相等示例

以下示例演示了对同一枚举类型的各种枚举值使用 equals() 方法的情况,其中前两个枚举相同。

package com.tutorialspoint;

// enum showing topics covered under Tutorials
enum Tutorials {  
   Java, HTML, Python; 
} 
 
public class EnumDemo { 

   public static void main(String args[]) {
 
      Tutorials t1, t2, t3; 
    
      t1 = Tutorials.Java; 
      t2 = Tutorials.Java; 
      t3 = Tutorials.Python; 
    
      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"); 
      }
   } 
} 

让我们编译并运行上述程序,这将产生以下结果:

Java is equal to Java

比较枚举值是否相等示例

以下示例演示了对同一枚举类型的各种枚举值使用 equals() 方法的情况,其中所有提供的枚举都是唯一的,并且其中一个枚举为 null。

package com.tutorialspoint;

// enum showing topics covered under Tutorials
enum Tutorials {  
   Java, HTML, Python; 
} 
 
public class EnumDemo { 

   public static void main(String args[]) {
 
      Tutorials t1, t2, t3; 
    
      t1 = Tutorials.Java; 
      t2 = Tutorials.HTML; 
      t3 = null; 
    
      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
java_lang_enum.htm
广告