Static Classes
Making a static class
public static class ExampleStaticClass{
//feilds
public static int x = 3;
public static int y = 4;
//methods
public static int add1ToY(){
this.y++;
return this.y
}
public static int add1ToX(){
this.x++;
return this.x;
}
}Calling static classes
Last updated