Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit f6fec8d

Browse files
Experiment 9_1
1 parent ea54cce commit f6fec8d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

‎Experiment 9/Exp9_1.java‎

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
class multiThreads implements Runnable
3+
{
4+
public void run()
5+
{
6+
System.out.println("Multi Thread Class");
7+
}
8+
}
9+
public class Exp9_1 {
10+
11+
public static void main(String[] args) {
12+
multiThreads m = new multiThreads();
13+
Thread t1 = new Thread(m);
14+
t1.start();
15+
}
16+
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /