Die Datei:
SimpleThreadTest0.java
1
/**
2
* ein Test fuer SimpleThread
3
*/
4
5
//--------------------
6
7
public
8
class
SimpleThreadTest0
{
9
10
public
static
11
void
main
(
String
[
]
argv
)
{
12
Thread
t1
=
13
new
SimpleThread
(
"foo"
)
;
14
15
Thread
t2
=
16
new
SimpleThread
(
"bar"
)
;
17
18
t1
.
start
(
)
;
19
t2
.
start
(
)
;
20
}
21
}
22
23
//--------------------
24
Die Quelle:
SimpleThreadTest0.java
Letzte Änderung: 29.04.2013
©
Prof. Dr. Uwe Schmidt