0% found this document useful (0 votes)
29 views4 pages

Java Variable and Naming Guide

hehe
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views4 pages

Java Variable and Naming Guide

hehe
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Variable types, Variable Scopes and

Naming Conventions
Types of variables and Scopes of Variables

Types of variables Scopes of Variables

● Local variables ● Method Level Scope


● Instance variables ● Object Level Scope
● Class/Static variables ● Class Level Scope
Naming conventions

Naming Conventions Programming Case Types

● Packages ● camelCase
● Classes ● PascalCase
● Interfaces ● snake_case
● Methods ● kebab-case
● Variables ● MACRO_CASE
● Constants ● Train-Case

Oracle Documentation
Interview Questions

You might also like