當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java 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.tutorialspoint;

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

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Enum.compareTo() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。