LEC : 18 | JAVA
LEC:18
Classes and Objects in JAVA
Source Code:
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
Post a Comment