|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
由于这些智能化家电的市场需求没有预期的高,Sun放弃了该项计划。就在Oak几近失败之时,随着互联网的发展,Sun看到了Oak在计算机网络上的广阔应用前景,于是改造了Oak,
/**
*<p>Title:完成Runnable接口,取得线程。</p>
*<p>Description:经由过程完成Runnable接口来取得本人的线程(t2)。</p>
*<p>Copyright:Copyright(c)2003</p>
*<p>Filename:twothread.java</p>
*@version1.0
*/
publicclasstwothreadimplementsRunnable{
/**
*<br>办法申明:机关器。实践线程,并启动这个线程。
*<br>输出参数:
*<br>前往范例:
*/
twothread(){
//猎取以后的线程
Threadt1=Thread.currentThread();
t1.setName("Thefirstmainthread");
System.out.println("Therunningthread:"+t1);
//经由过程将本类(Runnable接口)和称号机关一个线程
Threadt2=newThread(this,"thesecondthread");
System.out.println("creatanotherthread");
//启动线程
t2.start();
try{
System.out.println("firstthreadwillsleep");
Thread.sleep(3000);
}catch(InterruptedExceptione){
System.out.println("firstthreadhaswrong");
}
System.out.println("firstthreadexit");
}
/**
*<br>办法申明:线程主体。完成run办法。
*<br>输出参数:
*<br>前往范例:
*/
publicvoidrun(){
try{
for(inti=0;i<5;i++){
System.out.println("Sleeptimeforthread2:"+i);
Thread.sleep(1000);
}
}catch(InterruptedExceptione){
System.out.println("threadhaswrong");
}
System.out.println("secondthreadexit");
}
/**
*<br>办法申明:主办法
*<br>输出参数:
*<br>前往范例:
*/
publicstaticvoidmain(Stringargs[]){
newtwothread();
}
}
在性能方面,在windows平台下,.net网页编程可能是占强项,要是把.net网页编程放在sun开发的操作系统上去运行呢?根本就运行不了,.net网页编程对其它操作系统的支持也很弱,性能也可能比不上java。 |
|