Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
463 views
in Technique[技术] by (71.8m points)

java - The method finalize() from the type Object is not visible?

I tried the following code in a main method of a class that I wrote:

public static void main(String[] args){
    ...
    Object s = new Object();
    s.finalize();
    ...
}

However, the eclipse give me a tip that

The method finalize() from the type Object is not visible

I am so confused because the type Object has a protected finalized method, which is supposed to be visible by its own? Am I wrong anyway?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Object#finalize() is a protected method. You can't call it like that. A protected member of a class is inherited by it's direct subclass. You can access it inside that direct subclass on this reference, but not using the reference of that class directly.

It would be like this:

class Demo {
    public void test() { 
        this.finalize();
    } 
}

BTW, why do you want to invoke it? That method is automatically invoked by JVM to clear any resources that an object is using, just before the object is completely removed from the memory.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...