vote up 0 vote down star

Duplicate of: Private vs. Public members in practice (how important is encapsulation?)

See also: Do any other developers get yelled at for making every thing public?

please contribute to these existing questions


I don't know when I should make something private or public in OOP languages. I end up making everything private and then I use getter/setter methods.

In my opinion it makes a lot more code doing it this way.

Can anyone explain this to me?

flag

closed as exact duplicate by Shog9, Zach Scrivena, Kristopher Johnson, Bombe Feb 9 at 19:42

8 Answers

vote up 4 vote down check

In my opinion fields should always be private (or at least almost always)... but that doesn't mean you should always provide properties. Ideally, the type should be able to do meaningful things without just being a repository of properties which other types put together.

However, back to properties vs fields - I have an article about why I feel that properties are much better than public fields. It's written with a C# angle, but the same is basically true in Java too.

link|flag
When did java get properties? – Malfist Feb 9 at 19:38
Jon Skeet is correct though, using properties you can force some kind of data integrity on your class. If you leave it public they could set it to any damn value they wanted to, and your class might not be able to handle it. – Malfist Feb 9 at 19:39
It doesn't have "proper" properties, but I was just going on the "getter methods" part of the question. It's had convention-based properties for a very long time. – Jon Skeet Feb 9 at 19:40
vote up 3 vote down

Rule of Thumb: Things are Private until they NEED to be Public.

Careful around "need". There should be a compelling reason for things to be public in a class. Convenience is NOT a compelling need!

link|flag
vote up 1 vote down

Every piece of code should be private unless it's specifically required to be called from outside the class.

Every piece of data should be private if you need to control what external parties put in there, either validation or if you need other work done when changes are made.

That is the whole point of encapsulation.

link|flag
vote up 0 vote down

Only show the outside world as little as possible. The less they know the less they have to remember, the less they can screw up. Making as many things private as possible up until the point that it starts becoming too complex. Keeping things simple is how you program well.

link|flag
vote up 0 vote down

Hide everything that the user does not need to access from outside of the object. It might make for a little more code in the short term, but will save you tons on time in the long term.

Visual Studio will stub out getter/setter methods for you rather quickly.

link|flag
vote up 0 vote down

Settings something as Private inside a class will ensure that only that class is allowed to use it. If you set something to Public, it can be accessed outside the class.

Depending on what you want to achieve, you should be using both. A good practice is to set your Variables as private, then create Properties for accessing the variables. This will allow you to specify is the variable is read-only, or even do some data integrity checks before setting the variables.

link|flag
vote up 0 vote down

I can think this is a subjective question and it can also depend on your application. In general, every data member should be private. Furthermore, in regards to methods, only those methods are are called from the outside should be public and should be minimal when possible. Perhaps the most important thing to do is to make sure your abstraction of your object/class is right.

link|flag
vote up 0 vote down

Most fields in a class should be private - but you should not automatically have getters/setters for these fields.

Think about what services the class should provide to clients and have methods to provide those services. Clients should not have access to fields in a class - even via getter/setters - unless it makes sence from the point of view of the class interface.

Having getter/setters for all of your class internals provides as little encapsulation as making those fields public.

link|flag
Getters and Setters are still better than making fields public in that you can replace some implementation details. For example you could do a calculation instead of caching a value. But your general point is still valid – hacken Feb 9 at 19:51

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