Wednesday, 31 July 2019

Naming conventions in Java

What is the purpose of Naming conventions?

The main purpose of naming conventions is:

  1. Readability
  2. Maintainability
If the teams don't follow the naming conventions the individuals use their own conventions and that will lead to ambiguity to understand the code.

Here are the typical Java naming conventions as per standards which are handy:



No comments:

Post a Comment

Keywords in Java

Keywords are reserved words in java which act as a key to code and has the intent of its own use. Rules for Keywords:  Keywords should ...