> e.g. every Integer variable starts with an i: int iValue; > or Parameters using an p like: function callMe (int piAge, > String pstName) > and so on... >
hungarian notation in java? -1 http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html http://java.sun.com/docs/codeconv/html/CodeConventions.doc8.html http://jakarta.apache.org/turbine/common/code-standards.html > Some advantages: > - Code is better readable > - Faster identification of a variable/object/parameter > - Code is upgradeable > - Faster programming - it's easier to find names because the > names are more specific (iAge, stAge, ...) > > > Andreas > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
