FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaCodes/Mythread5.java at main · raskarabhi45/JavaCodes · GitHub
raskarabhi45
/
JavaCodes
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
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
JavaCodes
/
Mythread5.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
40 lines (31 loc) · 800 Bytes
Breadcrumbs
JavaCodes
/
Mythread5.java
Copy path
File metadata and controls
40 lines (31 loc) · 800 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
38
39
40
import
java
.
lang
.*;
class
Demo
extends
Thread
{
public
void
run
()
//3 Running state
{
for
(
int
i
=
0
;
i
<
10
;
i
++)
{
System
.
out
.
println
(
"Value of i : "
+
i
);
try
{
Thread
.
sleep
(
1000
);
}
catch
(
Exception
obj
)
{}
}
}
}
class
Mythread5
{
public
static
void
main
(
String
arg
[])
throws
Exception
{
Demo
obj1
=
new
Demo
();
//1 New state
Thread
t1
=
new
Thread
(
obj1
,
"First"
);
Demo
obj2
=
new
Demo
();
//1 New state
Thread
t2
=
new
Thread
(
obj1
,
"Second"
);
t1
.
start
() ;
//2 Runnable state
t1
.
join
();
//dudh aalyavr chaha......
t2
.
start
() ;
//2 Runnable state
// 4 Dead state
}
}
Back
|
FazBrowse Home
|
New Git URL