FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
learn-java/src/thread/sync.java at master · muzammyl/learn-java · GitHub
muzammyl
/
learn-java
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
3
Code
Pull requests
0
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
learn-java
/
src
/
thread
/
sync.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
46 lines (43 loc) · 1.04 KB
Breadcrumbs
learn-java
/
src
/
thread
/
sync.java
Copy path
File metadata and controls
46 lines (43 loc) · 1.04 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
package
src
.
thread
;
class
sync
{
synchronized
void
call
(
String
msg
) {
System
.
out
.
print
(
"["
+
msg
+
"]"
);
try
{
Thread
.
sleep
(
1000
);
}
catch
(
InterruptedException
e
) {
System
.
out
.
println
(
"Interrupted!"
);
}
System
.
out
.
println
();
}
}
class
caller
implements
Runnable
{
String
msg
;
sync
target
;
Thread
t
;
public
caller
(
sync
targ
,
String
m
) {
msg
=
m
;
target
=
targ
;
t
=
new
Thread
(
this
);
}
public
void
run
() {
target
.
call
(
msg
);
}
}
class
syncDemo
{
public
static
void
main
(
String
[]
args
) {
sync
target
=
new
sync
();
caller
o1
=
new
caller
(
target
,
"sync1"
);
caller
o2
=
new
caller
(
target
,
"sync2"
);
caller
o3
=
new
caller
(
target
,
"sync3"
);
o1
.
t
.
start
();
o2
.
t
.
start
();
o3
.
t
.
start
();
try
{
o1
.
t
.
join
();
o2
.
t
.
join
();
o3
.
t
.
join
();
}
catch
(
InterruptedException
e
) {
System
.
out
.
println
(
"Interrupted"
);
}
}
}
Back
|
FazBrowse Home
|
New Git URL