Java Naming Conventions
Java Naming Conventions
com
http://www.javatpoint.com/java-naming-conventions
Convention
class name
should start with uppercase letter and be a noun e.g. String, Color, Button, System, Thread
etc.
interface
name
should start with uppercase letter and be an adjective e.g. Runnable, Remote,
ActionListener etc.
method name
should start with lowercase letter and be a verb e.g. actionPerformed(), main(), print(),
println() etc.
variable name
package
name
constants
name
1/1