Answers for "what is class in java with example"

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

Code answers related to "what is class in java with example"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language