符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
join
合并线程,插队线程,将此线程执行完成后,再执行其他线程,其他线程阻塞
join是一个成员方法,必须通过Thread对象调用
创新互联公司"三网合一"的企业建站思路。企业可建设拥有电脑版、微信版、手机版的企业网站。实现跨屏营销,产品发布一步更新,电脑网络+移动网络一网打尽,满足企业的营销需求!创新互联公司具备承接各种类型的成都网站设计、成都网站制作项目的能力。经过10多年的努力的开拓,为不同行业的企事业单位提供了优质的服务,并获得了客户的一致好评。
public class n {
public static void main(String[]args) throws InterruptedException
{
Thread t =new Thread(()-> {
for(int i=0;i<5;i++)
{
System.out.println("a"+i);
}
});
t.start();
for(int i=0;i<5;i++)
{
if(i%2==0)
{
t.join();//插队,此时main主线程被阻塞,插队线程执行完所有步骤再执行main
}
System.out.println("b"+i);
}
}
}
例二:
public class n {
public static void main(String[]args) throws InterruptedException
{
new Thread(new father()).start();
}
}
class father extends Thread{
public void run()
{
System.out.println("想抽象,发现没了");
System.out.println("让儿子买中华");
Thread t=new Thread(new son());
t.start(); //不行,各走各的逻辑错误,再加入join先执行完son,再执行father剩下的
try {
t.join();
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("接过烟");
}
}
class son extends Thread{
public void run()
{
System.out.println("拿钱");
System.out.println("路边玩10秒");
for(int i=0;i<10;i++)
{
System.out.println(i+"秒过去了");
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
System.out.println("去买烟");
System.out.println("回家");
}
}