由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - 能这么 create thread 吗?
相关主题
ZT: 关于性爱的多线程问题研究(一)Re: connection pool
问个Thread 的问题,java certificate里的●●●●紧急求助JAVA初级问题,今天project due●●●●
implements runable 和 extends threadCan Java thread return a value?
线程问题。几个问题
好虫,exploit等大牛请进--关于htmlunit一个基本问题。
can applet implements runnable?关于inner class的继承
Re: How to showStatus in Applet?java的接口runnable
FrameWork of Thread application 1另一个入门问题。
相关话题的讨论汇总
话题: thread话题: runnable话题: create话题: class话题: 这么
进入Java版参与讨论
1 (共1页)
g***r
发帖数: 281
1
Runnable t = new Runnable() {
public void run()
{ //....
}
};
Thread t1 = new Thread (t);
t1.start();
这段code比较奇怪, 我以为应该是语法错, 但是却能运行,咋回事?
xt
发帖数: 17532
2

一点都不古怪.我整天写这玩意.见Thread的constructor.

【在 g***r 的大作中提到】
: Runnable t = new Runnable() {
: public void run()
: { //....
: }
: };
: Thread t1 = new Thread (t);
: t1.start();
: 这段code比较奇怪, 我以为应该是语法错, 但是却能运行,咋回事?

c*y
发帖数: 137
3
Runnable is an interface, and this is like defining an inner class. If you
want to be formal, you can always first define a class which implements
Runnable, then you use that class.

【在 g***r 的大作中提到】
: Runnable t = new Runnable() {
: public void run()
: { //....
: }
: };
: Thread t1 = new Thread (t);
: t1.start();
: 这段code比较奇怪, 我以为应该是语法错, 但是却能运行,咋回事?

1 (共1页)
进入Java版参与讨论
相关主题
另一个入门问题。好虫,exploit等大牛请进--关于htmlunit
请问关于用threadPoolExecutor实现threadpool的问题?can applet implements runnable?
再问一个今天的面试题Re: How to showStatus in Applet?
Question: reflection and genericsFrameWork of Thread application 1
ZT: 关于性爱的多线程问题研究(一)Re: connection pool
问个Thread 的问题,java certificate里的●●●●紧急求助JAVA初级问题,今天project due●●●●
implements runable 和 extends threadCan Java thread return a value?
线程问题。几个问题
相关话题的讨论汇总
话题: thread话题: runnable话题: create话题: class话题: 这么