Naming Conventions in Java

Naming Conventions in Java refers to the guidelines that application developers are expected to follow so that they can produce consistent and readable code throughout the application. 1. Basic Naming convention standards To declare variables, constants, methods, classes, interfaces, etc use full descriptors. like customerId, firstName, lastName, etc. 2. Naming Packages The guideline for Package … Read more