FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ThinkingInJava/reusingClasses/Exercise2.java at main · viktorvoltz/ThinkingInJava · GitHub
viktorvoltz
/
ThinkingInJava
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ThinkingInJava
/
reusingClasses
/
Exercise2.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
79 lines (67 loc) · 1.6 KB
Breadcrumbs
ThinkingInJava
/
reusingClasses
/
Exercise2.java
Copy path
File metadata and controls
79 lines (67 loc) · 1.6 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
class
Cleanser
{
private
String
s
=
"Cleanser"
;
public
void
append
(
String
a
) {
s
+=
a
;
}
public
void
dilute
() {
append
(
" dilute()"
);
}
public
void
apply
() {
append
(
" apply()"
);
}
public
void
scrub
() {
append
(
" scrub()"
);
}
public
String
toString
() {
return
s
;
}
public
static
void
main
(
String
[]
args
) {
Cleanser
x
=
new
Cleanser
();
x
.
dilute
();
x
.
apply
();
x
.
scrub
();
System
.
out
.
println
(
x
);
}
}
class
Detergent
extends
Cleanser
{
// Change a method:
public
void
scrub
() {
append
(
" Detergent.scrub()"
);
super
.
scrub
();
// Call base-class version
}
// Add methods to the interface:
public
void
foam
() {
append
(
" foam()"
);
}
// Test the new class:
public
static
void
main
(
String
[]
args
) {
Detergent
x
=
new
Detergent
();
x
.
dilute
();
x
.
apply
();
x
.
scrub
();
x
.
foam
();
System
.
out
.
println
(
x
);
System
.
out
.
println
(
"Testing base class:"
);
Cleanser
.
main
(
args
);
}
}
class
Sterilizer
extends
Detergent
{
public
void
scrub
() {
append
(
" Sterilizer.scrub()"
);
super
.
scrub
();
// calling base class
}
public
void
sterilize
() {
append
(
" sterilize()"
);
}
public
static
void
main
(
String
[]
args
) {
Sterilizer
x
=
new
Sterilizer
();
x
.
dilute
();
x
.
apply
();
x
.
scrub
();
x
.
foam
();
x
.
sterilize
();
System
.
out
.
println
(
x
);
System
.
out
.
println
(
"Testing base class:"
);
Detergent
.
main
(
args
);
}
}
Back
|
FazBrowse Home
|
New Git URL