java.lang.Enum.compareTo()方法範例


java.lang.Enum.compareTo() 方法為了比較該列舉與指定物件。列舉常數只能與同一個列舉型別的其他列舉常數。

宣告

以下是java.lang.Enum.compareTo()方法的宣告

public final int compareTo(E o)

引數

  • o -- 這是要進行比較的物件。

返回值

該方法返回一個負整數,零或正整數,根據此物件是小於指定的物件小於,等於或大於。

異常

  • NA

例子

下面的例子顯示java.lang.Enum.compareTo()方法的使用。

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.compareTo(t2) > 0) {
       System.out.println(t2 + " completed before " + t1); 
    }
    
    if(t1.compareTo(t2) < 0) {
       System.out.println(t1 + " completed before " + t2); 
    }
    
    if(t1.compareTo(t3) == 0) { 
       System.out.println(t1 + " completed with " + t3); 
    }
  } 
} 

讓我們來編譯和執行上面的程式,這將產生以下結果:

topic1 completed before topic2