define a class java code example
Example 1: java class
public class Lightsaber {
// properties
private boolean isOn;
private Color color;
// constructor
public Lightsaber(Color color) {
this.isOn = false;
this.color = color;
}
// getters
public Color getColor() {
return color;
}
public boolean getOnStatus() {
return isOn;
}
// setters
public void turnOn() {
isOn = true;
}
public void turnOff() {
isOn = false;
}
}
// Implementation in main method:
public class test {
public static void main(String[] args) {
Lightsaber yoda = new Lightsaber(green);
yoda.turnOn();
}
}
Example 2: how to make a class in java
public class Main {
public static void main (String[] args) {
System.out.println("Hello World");
}
}
Example 3: class in java
Class is a blueprint or template which
you can create as many objects as you
like. Object is a member or instance
of a class.
Class is declared using class keyword,
Object is created through
new keyword mainly. A class is a template
for objects. A class defines
object properties including a valid range
of values, and a default value.
A class also describes object behavior.