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

If you have a class member that is static and public. Would you write "static public" or "public static"? I know they are the same. But is there some recommendation / best practice for writing this?

share|improve this question

4 Answers

up vote 8 down vote accepted

see this question

If you download the Microsoft StyleCop Visual Studio addin, it can validate your source code against the rules Microsoft use. It likes the access modifier to come first.

share|improve this answer

"public static" is far more common, so you might want to go with that just to increase readability for programmers who never stumbled upon "static public".

share|improve this answer

When nothing else matters, go with consistency. In this case the rest of the world uses public static, so I'd go with that too just to avoid unnecessary surprise in those reading your code.

share|improve this answer

I personally would go with public static because it's more important that it's public than that it's static.

And check this: http://checkstyle.sourceforge.net/config_modifier.html

As well as this: http://java.sun.com/docs/books/jls/second_edition/html/classes.doc.html (These two links are for Java, but the concept is the same)

Short version: "public static" is recommended and is far more common.

share|improve this answer
1  
-1 I don't agree the fact of a method is "public" is more important than it is "static". I believe exactly the opposite. – Carlos Loth Dec 9 '10 at 21:16
1  
@Carlos i believe the question was about class member variables rather than methods. And though obviously both keywords are very important (and so a debate makes little sense), the visibility is by usual convention the first keyword to use, since it determines whether a member is reachable by other classes at all. Only once we know a member is visible/reachable is it obviously important HOW to reach it (where "static" becomes important). – Epaga Dec 10 '10 at 9:55
I believe that static has more "impact" in a member than its own visibility. It changes it "meaning" completely, while visibility is just, more or less, a convention for accessing the member and it can be overcome with reflection. The fact that something is static has much more impact. That said, I sadly use "public static" due to its overwhelming popularity... – Loudenvier Jun 15 '11 at 18:19

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.