Classes and objects in Java example programs
Example 1: How to make a class in Java?
// Public creates avaliability to all classes/files
public class Object {
// Instance of a variable per each class created
public int a = 1;
// Private restricts in local space (within these brackets)
private int b = 5;
// Defaults as public
int c = 0;
// Method Examples
void setB(int B)
{
b = B;
// No return b/c 'void'
}
int getA()
{
return b;
// Return b/c 'int' in front of method
}
}
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: classes in java
// this might help you understand how classes work
public class MathTest {
public static void main(String[] args) {
class MathAdd {
int num1;
int num2;
public int addNumbers() {
int addThemUp = num1 + num2;
return addThemUp;
}
}
MathAdd addition = new MathAdd(); // create a new instance of the class
// you can access variables from the class
addition.num1 = 10;
addition.num2 = 20;
// and use the method from the class to add them up
System.out.println(addition.addNumbers());
}
}
Example 4: 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 5: 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.