Redian新闻
>
能这么 create thread 吗?
avatar
能这么 create thread 吗?# Java - 爪哇娇娃
g*r
1
Runnable t = new Runnable() {
public void run()
{ //....
}
};
Thread t1 = new Thread (t);
t1.start();
这段code比较奇怪, 我以为应该是语法错, 但是却能运行,咋回事?
avatar
xt
2

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

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

avatar
c*y
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比较奇怪, 我以为应该是语法错, 但是却能运行,咋回事?

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。