Difference between revisions of "Coding guidelines"

From SIMA wiki
Jump to: navigation, search
(Created page with " == General Conventions == #Comment your code (documentation_guidelines9 #One File - One Class #Don't add packages with a wildcard (e.g. java.lang.* - instead always type ...")
 
Line 1: Line 1:
  
 
== General Conventions ==
 
== General Conventions ==
#Comment your code ([[documentation_guidelines]]9
+
#Comment your code ([[documentation_guidelines]])
 
#One File - One Class
 
#One File - One Class
 
#Don't add packages with a wildcard (e.g. java.lang.* - instead always type the whole package name java.lang.Integer)
 
#Don't add packages with a wildcard (e.g. java.lang.* - instead always type the whole package name java.lang.Integer)
 
# Produce readable code
 
# Produce readable code
 
# Produce efficient code (in this order - first readability, then efficiency)
 
# Produce efficient code (in this order - first readability, then efficiency)
 +
 +
== Naming Conventions ==
 +
camel case + (reduced) hungarian notation = ARS coding guidline
 +
 +
example camel case: clsHeimoZeilinger (new word –> capital letter)
 +
example hungarian : mnCountOfHeimos (m for member, n typeof integer)
 +
Origin: [http://en.wikipedia.org/wiki/Hungarian_notation|Hungarian notation - Wikipedia]

Revision as of 12:54, 16 October 2012

General Conventions

  1. Comment your code (documentation_guidelines)
  2. One File - One Class
  3. Don't add packages with a wildcard (e.g. java.lang.* - instead always type the whole package name java.lang.Integer)
  4. Produce readable code
  5. Produce efficient code (in this order - first readability, then efficiency)

Naming Conventions

camel case + (reduced) hungarian notation = ARS coding guidline

example camel case: clsHeimoZeilinger (new word –> capital letter) example hungarian : mnCountOfHeimos (m for member, n typeof integer) Origin: notation - Wikipedia