FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
learn-java/src/thread/current_thread.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
/
current_thread.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
18 lines (17 loc) · 535 Bytes
Breadcrumbs
learn-java
/
src
/
thread
/
current_thread.java
Copy path
File metadata and controls
18 lines (17 loc) · 535 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
package
src
.
thread
;
class
current_thread
{
public
static
void
main
(
String
[]
args
) {
Thread
t
=
Thread
.
currentThread
();
System
.
out
.
println
(
"Current thread: "
+
t
);
t
.
setName
(
"main thread"
);
System
.
out
.
println
(
"After name change: "
+
t
);
try
{
for
(
int
i
=
5
;
i
>
0
;
i
--) {
System
.
out
.
println
(
i
);
Thread
.
sleep
(
1000
);
}
}
catch
(
InterruptedException
e
) {
System
.
out
.
println
(
"Main thread interrupted"
);
}
}
}
Back
|
FazBrowse Home
|
New Git URL