Answers for "example of objects in java"

1

java classes and objects

class Dog {
    int age = 5;

    public static void main(String[]args) {

        Dog myObj = new Dog();
        System.out.println(myObj.age);
    }
}
Posted by: Guest on August-31-2021
-1

what is an object in java

This YouTube video explains the general idea of it.
https://youtu.be/Mm06BuD3PlY
Posted by: Guest on December-14-2021

Code answers related to "example of objects in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language