Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is a question I was asked in an interview: I have class A with private members and Class B extends A. I know private members of a class cannot be accessed, but the question is: I need to access private members of class A from class B, rather than create variables with the same value in class B.

I hope I am clear with this question. Thanks.

share|improve this question

12 Answers

The interviewer was either testing your knowledge of access modifiers, or your approach to changing existing classes, or both.

I would have listed them (public, private, protected, package private) with an explanation of each. Then gone on to say that class A would need to be modified to allow access to those members from class B, either by adding setters and getters, or by changing the access modifiers of the members. Or class B could use reflection. Finally, talk about the pros and cons of each approach.

share|improve this answer
3  
Great job addressing how to deal with question in an interview situation. – Bee Feb 13 '10 at 22:49
1  
+1. I would definitely have answered it that way. – BalusC Feb 13 '10 at 23:01

Reflection? Omitting imports, this should work:

public class A {

    private int ii = 23;

}

public class B extends A {

    private void readPrivateSuperClassField() throws Exception {
        Class<?> clazz = getClass().getSuperclass();
        Field field = clazz.getDeclaredField("ii");
        field.setAccessible(true);
        System.out.println(field.getInt(this));
    }

    public static void main(String[] args) throws Exception {
        new B().readPrivateSuperClassField();
    }

}

It'll not work if you do something like that before the of invocation readPrivateSuperClassField();:

System.setSecurityManager(new SecurityManager() {
        @Override
        public void checkMemberAccess(Class<?> clazz, int which) {
            if (clazz.equals(A.class)) {
                throw new SecurityException();
            } else {
                super.checkMemberAccess(clazz, which);    
            }
        }
    });

And there are other conditions under which the Reflection approach won't work. See the API docs for SecurityManager and AccessibleObject for more info. Thanks to CPerkins for pointing that out.

I hope they were just testing your knowledge, not looking for a real application of this stuff ;-) Although I think an ugly hack like this above can be legit in certain edge cases.

share|improve this answer
1  
Robert, that only works if your process has privilege to do so. – CPerkins Feb 13 '10 at 20:57

The architecture is broken. Private members are private because you do not want them accessed outside the class and friends.

You can use friend hacks, accessors, promote the member, or #define private public (heh). But these are all short term solutions - you will probably have to revisit the broken architecture at some stage.

share|improve this answer
2  
What do you mean, "the architecture is broken". He's asking about an interview question that will test his Java knowledge, not about designing a real system. – Robert Petermeier Feb 13 '10 at 20:44
By the way if you tell them their code is broken in the interview, it could either help or hinder your chances of getting the job. If it helps, it might be a job you will enjoy. Otherwise, you should keep your CV up-to-date. – Matt Curtis Feb 13 '10 at 20:53
@Robert The architecture is broken because you use private because it's the right thing to do. If that changes, it is a symptom that your design needs changing. "Fixing" it by promoting private to protected is like just telling a just few people your ATM PIN - it will probably be OK in the very short term, but you should change it, or get a joint account or something. – Matt Curtis Feb 13 '10 at 20:57
1  
+1 for #define private public in interview question – Eric Feb 13 '10 at 20:57
1  
Thanks Eric. I'd strongly suggest winking when you say it :-) – Matt Curtis Feb 13 '10 at 21:17
show 8 more comments

You cannot access private members from the parent class. You have make it protected or have protected/public method that has access to them.

EDIT : It is true you can use reflection. But that is not usual and not good idea to break encapsulation.

share|improve this answer
2  
Not true, you cn use reflection. – Reverend Gonzo Feb 14 '10 at 15:55

By using public accessors (getters & setters) of A's privates members ...

share|improve this answer

Have you thought about making them protected ? Just to be sure you are aware of this option, if you are then pardon me for bringing up this trivia ;)

share|improve this answer

If I'm understanding the question correctly, you could change private to protected. Protected variables are accessible to subclasses but behave like private variables otherwise.

share|improve this answer

You can use the setters and getters of class A. Which gives same feeling as if You are using a class A's object.

share|improve this answer

Private will be hidden until you have been given the right access to it. For instance Getters or setters by the programmer who wrote the Parent. If they are not visible by that either then accept the fact that they are just private and not accessible to you. Why exactly you want to do that??

share|improve this answer

I don't know about Java, but in some languages nested types can do this:

    class A {
        private string someField;
        class B : A {
            void Foo() {
                someField = "abc";
            }
        }
    }

Otherwise, use an accessor method or a protected field (although they are often abused).

share|improve this answer

A private member is accessible in subclass in a way that you cannot change the variable, but you are able to access the variable as read only.

share|improve this answer

Note that a private field of a superclass might be accessible to a subclass (for example,if both classes are memebers of the same class),Nevertheless,a private field is never inherited by a subclass

share|improve this answer
1  
Private field of a superclass can't be access (directly) by subclass. – alexsmail Sep 25 '12 at 7:06
Protected fields on the other hand can be accessed directly by the subclass. – Nate Oct 2 '12 at 14:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.