java class and object code example
Example 1: java class
public class Lightsaber {
private boolean isOn;
private Color color;
public Lightsaber(Color color) {
this.isOn = false;
this.color = color;
}
public Color getColor() {
return color;
}
public boolean getOnStatus() {
return isOn;
}
public void turnOn() {
isOn = true;
}
public void turnOff() {
isOn = false;
}
}
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 Object {
public int a = 1;
private int b = 5;
int c = 0;
void setB(int B)
{
b = B;
}
int getA()
{
return b;
}
}
Example 3: java class
public class TestClass {
private int id = 111;
public TestClass(){
super();
}
public void test(){
}
}
Example 4: using class in java
class Number {
int number;
public boolean isSquare(){
double squareRoot = Math.sqrt(number);
if(squareRoot == Math.floor(squareRoot))
{
return true;
} else {
return false;
}
}
public boolean isTriangular(){
int x = 1;
int triangularNumber = 1;
while(triangularNumber < number){
x++;
triangularNumber = triangularNumber + x;
}
if(triangularNumber == number){
return true;
} else {
return false;
}
}
}
Number myNumber = new Number();
myNumber.number = 16;
System.out.println(myNumber.isSquare());
Example 5: using class in java
public class HelloWorld {
public static void main(String[] args) {
class Number{
int number;
public boolean isPos(){
if(number > 0){
return true;
} else {
return false;
}
}
}
Number myNumber = new Number();
myNumber.number = 7;
if(myNumber.isPos()){
System.out.println(myNumber.number + " is positive!!!");
} else {
System.out.println(myNumber.number + " is not positive!!!");
}
}
}
Example 6: 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.