Java.lang.Enum.finalize() 方法

描述

java.lang.Enum.finalize() 方法表明枚举类不能有finalize方法。


声明

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

protected final void finalize()

参数

NA


返回值

此方法不返回任何值。


异常

NA


示例

下面的例子展示了 java.lang.Enum.finalize() 方法的使用。

package com.tutorialspoint;

import java.lang.*;

// enum showing Mobile prices
enum Mobile {
   Samsung(400), Nokia(250);
  
   int price;
   Mobile(int p) {
      price = p;
   }
   int showPrice() {
      return price;
   } 
}

public class EnumDemo {

   public static void main(String args[]) {

      System.out.println("enum class cannot have finalize methods...");       
      EnumDemo t = new EnumDemo() {
         protected final void finalize() { }    
      }; 

      System.out.println("CellPhone List:");
      for(Mobile m : Mobile.values()) {
         System.out.println(m + " costs " + m.showPrice() + " dollars");
      }                    
   }
} 

让我们编译并运行上面的程序,这将产生下面的结果 −

enum class cannot have finalize methods...
CellPhone List:
Samsung costs 400 dollars
Nokia costs 250 dollars