-
Notifications
You must be signed in to change notification settings - Fork 3
/
OOPs1.java
37 lines (35 loc) · 840 Bytes
/
OOPs1.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//Constructors
class Student{
int rn;
String name;
String subject;
static final String instituteName = "APSMind";
Student(){
System.out.println("I am default constructor.");
}
Student(int rn,String name){
System.out.println("I am parametrized(2) constructor.");
this.rn = rn;
this.name = name;
}
Student(int rn,String name,String subject){
this(rn,name);
System.out.println("I am parametrized(3) constructor.");
this.subject = subject;
}
public void showStudent(){
System.out.println(rn);
System.out.println(name);
System.out.println(subject);
System.out.println(instituteName);
}
}
class Simple{
public static void main(String[] args){
Student s = new Student(1,"Ramu Kaka");
//s.instituteName = "ABCDEFG";
s.showStudent();
Student s2 = new Student(2,"ABCX","Java");
s2.showStudent();
}
}