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

I've heard various programmers suggest not including the word "private" in declarations, method signatures, etc. as private is the default scope when not specified. It can make for cleaner code but I'm interested in what the opinions are on whether you use the "private" scope on your variables, methods, etc. Tools like CodeRush that generate code for you include the word "private" so I'm curious if this is good or bad or just a matter of personal preference.

share|improve this question

closed as not constructive by casperOne Aug 6 '12 at 15:32

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

up vote 13 down vote accepted

Cleaner code is more explicit as to the designer's intentions. Using private demonstrates a deliberate choice, not open to debate. Falling to the default opens up the questions: was this on purpose, or he simply forgot to include a modifier?

share|improve this answer

Remove the private and Ask your fellow developers whether they are confused or not

Personally i feel, including private make your code more readable. I would give more importance to "Readability" than "being cleaner"

share|improve this answer
1  
More readable code is cleaner. Cleaner is not (necessarily) shorter! – Jordão Aug 8 '12 at 13:40

In a codebase where stuff being public is an information leak (e.g. it will no longer get obfuscated), you want public to stick out. Removing private also has the same 'tide going out' effect on protected and other unnecessarily elevated visibility.

Ideally one'd use a StyleCop rule or similar to make the code actually be consistent (though that, as with all code rules should actually be agreed among the devs before someone comes to a conclusion about it).

(BTW Your contention in the premise re CodeRush's support for omitting it is incorrect - the options allow you to set method visibility etc. to be either private (OOTB) or 'default' (do not specify anything)).

share|improve this answer
Ruben - can you point me to where I can make "private" not appear in DevExpress options for CodeRush? – Neal Aug 6 '12 at 13:27
DevExpress\Options - Editor\Code Style\Scope - Methods: Select "Default" – Rory Becker Aug 6 '12 at 22:14
@RoryBecker thanks for stepping in. While we're here, I only figured out it existed because I was bloody minded and was on my 3rd lap of every options menu in there. The problem is that Default means little. I dont know the solution, but maybe it should say Default (no keyword emitted) or something? (Yes I know its more than likely technically the correct term wrt the lang standard) – Ruben Bartelink Aug 6 '12 at 23:17

It is up to compiler how to interpret methods or other class members without private, protected or public. It can be changed in nex version. So don't do it.

share|improve this answer
3  
That would be a breaking change... – Jordão Aug 5 '12 at 15:27
Actually, in VB6 procedures are public by default. That changed in VB.Net. Yep, breaking change. Anyone who didn't declare their method scope had a lot of work to do when migrating VB6 code to VB.Net. – DOK Feb 19 at 21:06

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