Call protected method from a subclass of another instance of different packages

后端 未结 2 1789
遇见更好的自我
遇见更好的自我 2020-12-09 14:02

I want to invoke a protected method of another instance from within a subclass of the class providing this protected method. See the following example:

publi         


        
相关标签:
2条回答
  • 2020-12-09 14:29

    You could access the protected methods either by subclassing and overriding; also when they are available in the same package. I will add some details. You can read details here.

    The example that you have is on lines of the protected clone() method available in the Object class in java; you cannot directly call it on any object (although all object implicitly extend from the Object class).

    0 讨论(0)
  • 2020-12-09 14:31

    Don't know the rationale, but JLS confirms this in 6.6.2. Details on protected Access (emphasis mine):

    A protected member or constructor of an object may be accessed from outside the package in which it is declared only by code that is responsible for the implementation of that object.

    So:

    package P2;
    public class P2 {
        protected void foo() {}
    }
    
    .........
    
    package P2A;    
    class P2A extends P2.P2 {
        void bar(P2.P2 other) {
            this.foo(); // OK
            other.foo();  // ERROR
        }
    
        void bar2(P2A other) { 
            other.foo(); //OK
        }
    }   
    

    In P2A.bar a call to this.foo() is accessible because this is responsible for implementation of P2 but other.foo() is not accessible because other may not be a P2A. bar2 on the other hand has a P2A so it is all good.

    Now, why all is OK if they are all the same package but not if they are different packages? What is the rationale? I don't know and would like to know.

    Meta-Comment I have rolled back a recent update by another user as it substantially changes the answer and is probably more suitable as a top level answer itself.

    0 讨论(0)
提交回复
热议问题