Java Enum equals()方法

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

1 语法

public final boolean equals(Object other)

2 参数

other :这是与此对象进行相等比较的对象。

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Enum equals()方法
 */
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

 

热门文章

优秀文章