FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaExamples/MultipleInheritance.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
/
MultipleInheritance.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
40 lines (32 loc) · 576 Bytes
Breadcrumbs
JavaExamples
/
MultipleInheritance.java
Copy path
File metadata and controls
40 lines (32 loc) · 576 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
interface
A
{
public
void
method
();
}
interface
B
{
public
void
method
();
}
class
C
implements
B
,
A
{
public
void
method
(){
System
.
out
.
println
(
"I am A"
);
}
}
class
MultipleInheritance
{
public
static
void
main
(
String
[]
args
){
C
c
=
new
C
();
c
.
method
();
A
a
=
new
A
(){
@
Override
public
void
method
(){
System
.
out
.
println
(
"Hello Method"
);
}
};
a
.
method
();
//annonymous object
new
C
().
method
();
new
A
(){
@
Override
public
void
method
(){
System
.
out
.
println
(
"I am annonymously created and overriden"
);
}
}.
method
();
}
}
Back
|
FazBrowse Home
|
New Git URL