FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaExamples/OOPs1.java at master · alimogh/JavaExamples · GitHub
alimogh
/
JavaExamples
Public
forked from
CMPundhir/JavaExamples
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaExamples
/
OOPs1.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
37 lines (35 loc) · 840 Bytes
Breadcrumbs
JavaExamples
/
OOPs1.java
Copy path
File metadata and controls
37 lines (35 loc) · 840 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
();
}
}
Back
|
FazBrowse Home
|
New Git URL