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

How do I change private variables from superclass to public so they can be inherited by the subclass? I've tried public void setDetails, but didnt work.

share|improve this question
5  
You need to provide far more details and sample code. It's not at all clear what you've tried, or what you're trying to accomplish. – Jon Skeet Aug 1 '11 at 11:48

closed as not a real question by Harry Joy, Roland Illig, Ian Ringrose, BalusC, Graviton Aug 2 '11 at 13:46

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

If variables in the parent class are declared private, there is no way to make them public. The only way to access them is if the parent class provides getter and setter methods for them.

Assuming you do not have access to the parent class:

The only way to take an existing class are manually make private fields public, is to use Reflection. This does however cause some performance overhead and security issues. If that does not affect your program, you can try it.

share|improve this answer
This may, however, not always work, depends on the SecurityManager settings. – TC1 Aug 1 '11 at 12:01
@TC1 - Indeed, that is why I said "... cause some performance overhead and security issues". – Nico Huysamen Aug 1 '11 at 12:07
Sorry, misunderstood that. Thought you meant it in the context of data encapsulation and integrity "security". :) – TC1 Aug 1 '11 at 12:22
@TC1 - lol, actually both :) – Nico Huysamen Aug 1 '11 at 12:25

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