Java 多线程与泛型实验

本题要求主线程退出时,在main方法中所启动的线程t1也要自动结束。

public class Main {
	public static void main(String[] args) 
	{
	    Thread t1=new Thread(new PrintTask());
	    t1.setDaemon(true);
	    t1.start();
	    System.out.println(Thread.currentThread().getName() + " end");
	}
}

setDaemon方法来设置守护线程

本题目要求t1线程打印完后,才执行主线程main方法的最后一句System.out.println(Thread.currentThread().getName()+" end");

public class Main {
	public static void main(String[] args) throws InterruptedException 
	{
	    Thread t1=new Thread(new PrintTask());
	    t1.start();
	    t1.join();
	    System.out.println(Thread.currentThread().getName() + " end");
	}
}

join线程联合
下列程序使用泛型机制创建一个数组列表对象,并向其添加三个元素,利用迭代器遍历该数组列表,请把程序补充完整。

public class Main {
	public static void main(String[] args) 
	{
	    List<String> al=new ArrayList<String>();
        al.add("red");
        al.add("yellow");
        al.add("blue");
        
        ListIterator<String> listIter=al.listIterator();
        while(listIter.hasNext())
        	 System.out.print(listIter.next()+"  ");
	}
}


注意ListIterator

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值