LEC : 18 | JAVA

         

LEC:18

Classes and Objects in JAVA



Source Code:

package oops;

class Student {

    void display() {
        System.out.println("Hello new Class and their Objects...");
    }
}

public class OOPS {

    public static void main(String[] args) {
        //Object creation  and calling method  also passing the values 
        Student O1 = new Student();
        O1.display();
    }

}



Comments

Popular posts from this blog

RunwayWithCode

web development Lectures

C++ Lectures