APP_Project
Editor used:Eclipse
Developing a super duper Battleship Board game using java as programming language.
There will be two players:
- Computer
- User
Goal- To sink opponent’s all the Ships.
1. Should be properly indented with 1 tab.
2. The opening curly brace should be in the same line as function or class name.
1. Should follow camelCase
2. Variable names and method names should start with Lower case.
3. Constants should be All Upper Case.
4. Class names should start with Upper Case Letter
1. All variables need to be declared on top of the class before any function definitions.
2. Private and public variables / functions should be grouped together.
1. Add comments before all the code blocks (class, function, variables)
2. No unwanted commented code should be present
3. Javadoc comments should include all the parameter and return type if there are any.