为什么Javac无法使用finalize编译类

时间:2019-02-21 03:38:11

标签: java finalize

我在stackoverflow上读过类似的问题,但是他们回答了如何处理(用-Xlint:deprecation进行编译),而不是为什么错误首先发生。我想知道为什么错误会突然出现第一名。

盒子类

public class box{
int height;
int length;
int breadth;

public int volume(){
    return height*length*breadth;
}
box(int h,int l,int b){
    height = h;
    length = l;
    breadth = b;
}
protected void finalize(){
    System.out.println("Im dying!!");
}}

测试班

public class test{
public static void main(String[] args){
    box a = new box(12,12,12);
    System.out.println("The volume is :"+ a.volume());
    a = null;
}}

错误:

Note: ./box.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.

0 个答案:

没有答案