General question here: If I'm making a new class, and it's only private field is a string, can I do something like this.privateString = argumentIn; in the constructor to set that private field? I'm just weary since I'm not good with the whole referencing part of java.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||||
|
|
Yes, and thus the definition of a private field being only accessible from within the class itself. And as a tip, without any accessors, this may render your objects of this class mostly useless. |
|||||||
|
|
Definitely. Consider this example. I have added some basic defensive copying practice.
Consider reading this post by Joshua Bloch on defensive copying of fields. |
|||||
|
|