making class object java explaines code example
Example 1: 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 2: 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.