Variable naming conventions in Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T15:01:34Z http://stackoverflow.com/feeds/question/414001 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/414001/variable-naming-conventions-in-java 2 Variable naming conventions in Java? Click Upvote 2009-01-05T18:15:31Z 2009-01-05T19:02:54Z <p>In PHP, we (at least the good programmers) always start general variable names with a lower-case letter, but class variables/objects with an upper-case letter to distinguish them. In the same way we start general file names with a lower case letter, but files containing Classes with an upper case letter.</p> <p>E.g:</p> <pre><code>&lt;?php $number=123; $string="a string"; $colors_array=array('red','blue','red'); $Cat=New Cat(); ?&gt; </code></pre> <p>Are the conventions the same in java, i.e Objects starting with upper-case but the rest with lower case, or does everything start with lower case as I've read in other places?</p> http://stackoverflow.com/questions/414001/variable-naming-conventions-in-java/414013#414013 4 Answer by Vincent Ramdhanie for Variable naming conventions in Java? Vincent Ramdhanie 2009-01-05T18:18:16Z 2009-01-05T18:18:16Z <p>The convention is that class names start with Upper Case letter. Variable names are camelCase. Even if the variable references an object it still starts with lower case.</p> <p>This <a href="http://java.sun.com/docs/codeconv/html/CodeConventions.doc8.html" rel="nofollow">page</a> should help.</p> http://stackoverflow.com/questions/414001/variable-naming-conventions-in-java/414015#414015 0 Answer by EdgarVerona for Variable naming conventions in Java? EdgarVerona 2009-01-05T18:18:52Z 2009-01-05T18:18:52Z <p>The conventions really depend on the individual place you're coding for.</p> <p>In general, from what I've seen classes are CamelCased (with upper case first), methods start with lower case, and variables I've seen all over the place (some CamelCased, some camelCase with first letter lower (EDIT: as mentioned above, this is the norm), some even with hungarian notation). It depends on your style and the style that the project you're working on has adopted.</p> http://stackoverflow.com/questions/414001/variable-naming-conventions-in-java/414023#414023 19 Answer by jamesh for Variable naming conventions in Java? jamesh 2009-01-05T18:20:27Z 2009-01-05T18:20:27Z <p>You can find the naming in the <a href="http://java.sun.com/docs/codeconv/html/CodeConventions.doc8.html#367" rel="nofollow">Java Code Conventions</a>.</p> <p>A quick summary: </p> <ul> <li>For classes, use <code>UpperCaseCamelCase</code>.</li> <li>For class members and local variables use <code>lowerCamelCase</code></li> <li>For packages, use reverse URI, e.g. <code>org.acme.project.subsystem</code></li> <li>For constants, use <code>ALL_CAPS</code>.</li> </ul> http://stackoverflow.com/questions/414001/variable-naming-conventions-in-java/414028#414028 3 Answer by Patrick McElhaney for Variable naming conventions in Java? Patrick McElhaney 2009-01-05T18:21:17Z 2009-01-05T18:21:17Z <ul> <li>variablesAndMethodsLikeThis</li> <li>ClassesLikeThis</li> <li>CONSTANTS_LIKE_THIS</li> </ul> http://stackoverflow.com/questions/414001/variable-naming-conventions-in-java/414029#414029 4 Answer by Richard Campbell for Variable naming conventions in Java? Richard Campbell 2009-01-05T18:21:21Z 2009-01-05T18:38:49Z <p>Generally, all variables will start with lower case:</p> <pre><code>int count = 32; double conversionFactor = 1.5d; </code></pre> <p>Some people like to put static constants in all case:</p> <pre><code>public static final double KILOGRAM_TO_POUND = 2.20462262; </code></pre> <p>Things get more annoying when you deal with acronyms, and there is no real standard on whether you should use:</p> <pre><code>HTMLHandler myHtmlHandler; </code></pre> <p>or</p> <pre><code>HTMLHandler myHTMLHandler. </code></pre> <p>Now, either way, note that the class names (Object, String, HTMLHandler) always start with a capital letter, but individual object variables start lowercase.</p> http://stackoverflow.com/questions/414001/variable-naming-conventions-in-java/414126#414126 0 Answer by Bill K for Variable naming conventions in Java? Bill K 2009-01-05T19:02:54Z 2009-01-05T19:02:54Z <p>Some people (who are not me) like to differentiate Method variables from Instance variables by prefixing Instance variables with "this." This also fixes the problem that occurs when assigning a parameter to an Instance variable of the same name:</p> <pre><code>public ConstructorMethod(MyVar variable) { this.varable=variable; } </code></pre> <p>But then some people feel you should always use that pattern--but I'm not crazy about it--I think it's overkill if you keep your methods and classes small.</p> <p>Also, some people use a naming pattern for parameters. This (again) comes in handy when you are assigning from a constructor to an Instance variable:</p> <pre><code>public ConstructorMethod(MyVar pVariable) { varable=pVariable; } </code></pre> <p>Usually the pattern is pVariable or _variable. I occasionally use this because I find it more readable than this., but it has the disadvantage of making your Javadocs less readable.</p> <p>In any case, I don't really like the idea of ALWAYS using any of these patterns, They are great to know but if you really need help differentiating them throughout your code, tell Eclipse to show them in different colors.</p>