Skip to content

Commit 6e67e70

Browse files
committed
added code structure and Readme in java dir
1 parent 89c40ea commit 6e67e70

File tree

5 files changed

+17
-0
lines changed

5 files changed

+17
-0
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Java/README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# JAVA Guide
2+
3+
## Naming Conventions
4+
5+
### Class and Interface
6+
- They starts with Capitals letter.
7+
Example : Calculator, Runable, Object.
8+
9+
### Variables and Methods
10+
- Starts with small letter.
11+
12+
Example : marks, show(), getPrice(), setPrice() etc.
13+
14+
### Constants
15+
- The whole word is in Capitals.
16+
17+
Example : PI, BRAIN, MY_DATA, RAM, CPU_UTILIZATION etc.

0 commit comments

Comments
 (0)