coding standards coding standards for java
play

CODING STANDARDS Coding Standards for JAVA Focal3 Softw are Pvt Ltd - PDF document

F3 _ Doc_ 0 0 4 _ Ver4 .0 Page 1 of 1 7 CODING STANDARDS Coding Standards for JAVA Focal3 Softw are Pvt Ltd Confidential F3 _ Doc_ 0 0 4 _ Ver4 .0 Page 2 of 1 7 Table of Contents TABLE OF CONTENTS


  1. F3 _ Doc_ 0 0 4 _ Ver4 .0 Page 1 of 1 7 CODING STANDARDS Coding Standards for JAVA Focal3 Softw are Pvt Ltd Confidential

  2. F3 _ Doc_ 0 0 4 _ Ver4 .0 Page 2 of 1 7 Table of Contents TABLE OF CONTENTS .............................................................................................. 2 NAMING CONVENTIONS............................................................................................. 3 T YPE N AMI NG ................................................................................................................. 3 V ARIABLE AND C ONSTANTS N AMING ........................................................................... 3 A BBREVIATIONS AND ACRONYMS .................................................................................. 6 P ACKAGE N AMING .......................................................................................................... 6 M ETHOD N AMING ........................................................................................................... 6 E XCEPTIONS N AMING .................................................................................................... 7 I NTERFACES N AMING ..................................................................................................... 7 FILES................................................................................................................................. 8 STATEMENTS ................................................................................................................. 9 P ACKAGE AND I MPORT S TATEMENTS ............................................................................ 9 C LASSES AND I NTERFACE .............................................................................................. 9 M ETHODS ...................................................................................................................... 10 T YPES ............................................................................................................................ 10 V ARIABLES .................................................................................................................... 10 L OOPS ........................................................................................................................... 11 C ONDITIONALS ............................................................................................................. 12 LAYOUT AND COMMENTS....................................................................................... 13 L AYOUT ......................................................................................................................... 13 W HITE S PACE ............................................................................................................... 15 C OMMENTS ................................................................................................................... 16 Focal3 Softw are Pvt Ltd Confidential

  3. F3 _ Doc_ 0 0 4 _ Ver4 .0 Page 3 of 1 7 Naming Conventions Type Nam ing • Names representing types must be nouns and written in mixed case starting with upper case. Eg. Line, AudioSystem Common practice in the Java development community and also the type naming convention used by Sun for the Java core packages. Variable and Constants Nam ing • Variable names must be in mixed case starting with lower case. Eg. line, audioSystem Common practice in the Java development community and also the naming convention for variables used by Sun for the Java core packages. Makes variables easy to distinguish from types, and effectively resolves potential naming collision as in the declaration Line line; • Private class variables should have underscore (_) suffix. class Person { private String name_; ... } Apart from its name and its type, the scope of a variable is its most important feature. Indicating class scope by using underscore makes it easy to distinguish class variables from local scratch variables. This is important because class variables are considered to have higher significance than method variables, and should be treated with special care by the programmer. • Generic variables should have the same name as their type. void setTopic (Topic topic) void connect (Database database) Reduce complexity by reducing the number of terms and names used. Also makes it easy to deduce the type given a variable name only. If for some reason this convention doesn't seem to fit it is a strong indication that the type name is badly chosen. Focal3 Softw are Pvt Ltd Confidential

  4. F3 _ Doc_ 0 0 4 _ Ver4 .0 Page 4 of 1 7 Non-generic variables have a role. These variables can often be named by combining role and type: • All names should be written in English. English is the preferred language for international development. • is prefix should be used for boolean variables and methods. isSet, isVisible, isFinished, isFound, isOpen This is the naming convention for boolean methods and variables used by Sun for the Java core packages. When writing Java beans this convention is actually enforced for methods. Using the is prefix solves a common problem of choosing bad boolean names like status or flag. isStatus or isFlag simply doesn't fit, and the programmer is forced to chose more meaningful names. • JFC (Java Swing) variables should be suffixed by the element type. widthScale, nameTextField, leftScrollbar, mainPanel, fileToggle, minLabel, printerDialog Enhances readability since the name gives the user an immediate clue of the type of the variable and thereby the available resources of the object. • Plural form should be used on names representing a collection of objects. Collection points; / / of Point int[ ] values; Enhances readability since the name gives the user an immediate clue of the type of the variable and the operations that can be performed on the object. • n prefix should be used for variables representing a number of objects. nPoints, nLines The notation is taken from mathematics where it is an established convention for indicating a number of objects. Note that Sun use num prefix in the core Java packages for such variables. This is probably meant as an abbreviation of number of, but as it looks more like number it makes the variable name strange and misleading. If "number of" is the preferred statement, numberOf prefix can be used instead of just n. num prefix must not be used. • No suffix should be used for variables representing an entity number. tableNo, employeeNo Focal3 Softw are Pvt Ltd Confidential

  5. F3 _ Doc_ 0 0 4 _ Ver4 .0 Page 5 of 1 7 The notation is taken from mathematics where it is an established convention for indicating an entity number. An elegant alternative is to prefix such variables with an i: iTable , iEm ployee . This effectively makes them named iterators. • I terator variables should be called i , j , k etc. while (Iterator i = points.iterator(); i.hasNext(); ) { : } for (int i = 0; i < nTables; i+ + ) { : } The notation is taken from mathematics where it is an established convention for indicating iterators . Variables named j, k etc. should be used for nested loops only. • Negated boolean variable names must be avoided. boolean isError; boolean isFound; The problem arise when the logical not operator is used and double negative arises. It is not immediately apparent w hat !isNotError means. • Associated constants (final variables) should be prefixed by a common type name. final int COLOR_RED = 1; final int COLOR_GREEN = 2; final int COLOR_BLUE = 3; This indicates that the constants belong together, and what concept the constants represent. An alternative to this approach is to put the constants inside an interface effectively prefixing their names with the name of the interface: interface Color { final int RED = 1; final int GREEN = 2; final int BLUE = 3; } • Names representing constants (final variables) must be all uppercase using underscore to separate words. MAX_ITERATIONS, COLOR_RED Focal3 Softw are Pvt Ltd Confidential

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend