Java Naming Conventions in Details (in HINDI)

preview_player
Показать описание
Java naming convention is a rule to follow as you decide what to name your identifiers such as class, package, variable, constant, method, interfaces.

It is not forced to follow. So, it is known as convention not rule. These conventions are suggested by several Java communities such as Sun Micro-systems and Netscape.

All the classes, interfaces, packages, methods and fields of Java programming language are given according to the Java naming convention. If you fail to follow these conventions, it may generate confusion or erroneous code.
Also java naming conventions helps to good maintain and read easily code in coding.

#LearningandTeachingCoding
Рекомендации по теме
Комментарии
Автор

Please reduce Background music volume nice video

ramanshinde
Автор

Class LearningAndTeachingCoding {

public static void main(String args[ ] ) {
System.out.println("Thank You So Much Ma'am");

}
}


Output:
Thank You So Much Ma'am

brovlog