Home / Java Programming / Declarations and Access Control :: Discussion

Discussion :: Declarations and Access Control

  1.  package testpkg.p1; public class ParentUtil  {     public int x = 420;     protected int doStuff() { return x; } }  package testpkg.p2; import testpkg.p1.ParentUtil; public class ChildUtil extends ParentUtil  {     public static void main(String [] args)      {         new ChildUtil().callStuff();     }     void callStuff()      {         System.out.print("this " + this.doStuff() ); /* Line 18 */         ParentUtil p = new ParentUtil();         System.out.print(" parent " + p.doStuff() ); /* Line 20 */     } } 
    which statement is true?

  2. A.
    The code compiles and runs, with output this 420 parent 420.
    B.
    If line 18 is removed, the code will compile and run.
    C.
    If line 20 is removed, the code will compile and run.
    D.
    An exception is thrown at runtime.

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    The ParentUtil instance p cannot be used to access the doStuff() method. Because doStuff() has protected access, and the ChildUtil class is not in the same package as the ParentUtil class, doStuff() can be accessed only by instances of the ChildUtil class (a subclass of ParentUtil).

    Option A, B and D are incorrect because of the access rules described previously.


Be The First To Comment