|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
手机用到的是用j2me所编出来的小程序。
/**
*<p>Title:线程间互助</p>
*<p>Description:本实例利用二个线程配合互助绘制一个实体三角。</p>
*<p>Copyright:Copyright(c)2003</p>
*<p>Filename:mainThread.java</p>
*@version1.0
*/
publicclassmainThread{
publicstaticintflag=0;
intcount=10;
/**
*<br>办法申明:主办法
*<br>输出参数:
*<br>前往范例:
*/
publicstaticvoidmain(String[]arg){
newmainThread();
}
/**
*<br>办法申明:机关器,启动两个子线程。
*<br>输出参数:
*<br>前往范例:
*/
mainThread(){
thread1t1=newmainThread.thread1(this.count);
thread2t2=newmainThread.thread2(this.count);
//启动两线程
t1.start();
t2.start();
//让线程一起首事情。
flag=1;
}
/**
*<br>类申明:外部类,承继了Thread,
*<br>类形貌:完成了在输入每行后面的空格。
*/
classthread1extendsThread{
intcount1=0;
thread1(inti){
count1=i;
}
publicvoidrun(){
while(true){
if(count1<=0)break;
if(mainThread.flag==1){
for(inti=0;i<count1;i++){
System.out.print("");
}
count1--;
mainThread.flag=2;
}
}
}
}
/**
*<br>类申明:外部类,承继了Thread,
*<br>类形貌:完成了在输入每行第“*”号。并供应换行。
*/
classthread2extendsThread{
intcount2=0;
thread2(inti){
count2=i;
}
publicvoidrun(){
intcount=0;
while(true){
if(count>=count2)break;
if(mainThread.flag==2){
for(inti=0;i<(count*2+1);i++){
System.out.print("*");
}
System.out.print("
");
count++;
mainThread.flag=1;
}
}
}
}
}
Java编译的是字节码,跟C++相反,启动不够快,效率不够高,难以精确控制内存,但是优点是编程比C++容易,代码比较安全但是容易留下性能隐患,跨平台靠字节码在各个平台复制(一处编译到处调试) |
|