PPT Slide
Declaration in Java of class Coordinate:
public class Coordinate {
keywords public and class
name of the class. Convention: capitalize all words in a class names. E.g. StringBuffer,
body of the class, delimited by { }
- field declarations. Just normal type and class declarations
- methods and constructors (discussed later)