object oriented programming in java code example
Example 1: java oop
public class YourClass {
String example;
int test;
public YourClass(String example, int test) {
this.example = example;
this.test = test;
}
public void someMethod() {
System.out.println(example);
}
}
YourClass exampleObject = new YourClass("Hello World!", 5);
exampleObject.someMethod();
Example 2: object orientation in java
class Person {
void walk() {
System.out.println(“Can Run….”);
}
}
class Employee extends Person {
void walk() {
System.out.println(“Running Fast…”);
}
public static void main(String arg[]) {
Person p = new Employee();
p.walk();
}
}
Example 3: object oriented programming
public class Car
{
private double speed;
public Car(double initialSpeed)
{
speed = initialSpeed;
}
public double getSpeed()
{
return speed;
}
public void accelerate()
{
speed++;
}
public void slowDown()
{
speed--;
}
}