Class Declaration in Java
[public] [abstract] [final] class ClassName {
memberVariableDeclarations
methodDeclarations
}
class Point {
private int x;
private int y;
public void move(int x, int y){
this.x = x;
this.y = y;
}
}
Previous slide
Next slide
Back to first slide
View graphic version