一、填空题
1、 线程、通信
2、 Thread、Runnable
3、就绪
4、 synchronized、对象、this
5、进程
6、新建状态(New)、就绪状态(Runnable)、运行状态(Running)、阻塞状态(Blocked)、死亡状态(Terminated)
7、10、1
8、开启一个新线程、run()方法
9、wait()、notify()、notifyAll()
10、setDaemon(true)、start()
二、判断题
1、错 2、对 3、对 4、错 5、错
三、选择题
1、B 2、AC 3、ABC 4、BC 5、ABD 6、ABC 7、C 8、D 9、AB 10、ABCD
四、程序分析题
1、程序不能编译通过,因为RunHandler类没有实现Runnable接口,因此RunHandler的实例对象不能作为参数传递给Thread的构造方法。
2、程序不能编译通过,因为Thread的子类A重写的run()方法的访问级别不能低于父类run()方法的。访问级别
3、程序不能编译通过,因为同步方法中调用wait()方法的对象必须为同步锁对象。
4、t.start();
五、简答题
1、一种是继承java.lang包下的Thread类,覆写Thread类的run()方法,在run()方法中实现运行在线程上的代码。
new Thread() {
publicvoid run(){}
}.start();
另一种就是实现java.lang.Runnable接口,同样是在run()方法中实现运行在线程上的代码。
new Thread(new Runnable(){
publicvoid run(){}
}).start()
1、 调用sleep()方法,正在执行的线程主动让出CPU去执行其他线程,在sleep()方法指定的时间过后,CPU才会回到这个线程上继续往下执行,如果当前线程进入了同步锁,sleep()方法并不会释放锁,即使当前线程使用sleep()方法让出了CPU,但其它被同步锁挡住了的线程也无法得到执行。wait()在一个已经进入了同步锁的线程内进行调用,让当前线程暂时让出同步锁,以便其它正在等待此锁的线程可以得到同步锁并运行。当其它线程调用了notify()方法后,调用wait()方法的线程就会解除wait状态,当再次获得同步锁后,程序可以继续向下执行。
2、 相同点:Lock能完成synchronized所实现的所有功能。
不同点:总的来说,Lock更加灵活。Lock有比synchronized更精确的线程予以和更好的性能。synchronized会自动释放锁,但是Lock一定要求程序员手工释放,并且必须在finally从句中释放。synchronized 修饰方法时表示同一个对象在不同的线程中表现为同步队列,如果实例化不同的对象,那么synchronized就不会出现同步效果了。
4、在一个操作系统中,每个独立执行的程序都可以称为一个进程,也就是“正在运行的程序”。而在进程中还可以有多个执行单元同时执行,这些执行单元可以看作程序执行的一条条线索,被称为线程。Java运行环境是一个包含了不同的类和程序的单一进程。线程可以被称为轻量级进程。线程需要较少的资源来创建和驻留在进程中,并且可以共享进程中的资源。
六、编程题
1、参考答案
public class MyThread extends Thread{
publicMyThread(String name) {
super(name);
}
public voidrun() {
System.out.println(this.getName());
}
public staticvoid main(String[] args) {
newMyThread("Thread1").start();
newMyThread("Thread2").start();
}
}
2、参考答案
public class MyRunnable implements Runnable {
public voidrun() {
for (inti = 0; i < 50; i++) {
System.out.println("new");
}
}
public staticvoid main(String[] args) {
newThread(new MyRunnable()).start();
for (inti = 0; i < 100; i++) {
System.out.println("main");
}
}
}
3、参考答案
public class Test01 {
public staticvoid main(String[] args) {
Teachert = new Teacher();
newThread(t, "陈老师").start();
newThread(t, "高老师").start();
newThread(t, "李老师").start();
}
}
class Teacher implements Runnable {
private intnotes = 80;
public voidrun() {
while(true) {
dispatchNotes();// 调用售票方法
if(notes <= 0) {
break;
}
}
}
private synchronizedvoid dispatchNotes() {
if(notes > 0) {
try{
Thread.sleep(10);// 经过的线程休眠10毫秒
} catch(InterruptedException e) {
e.printStackTrace();
}
System.out.println(Thread.currentThread().getName()+ "---发出的笔记"
+notes--);
}
}
}
4、参考答案
public class Accumulator extends Thread {
privateint stratNum;
publicstatic int sum;
publicAccumulator(int startNum) {
this.stratNum= startNum;
}
publicstatic synchronized void add(int num) {
sum +=num;
}
publicvoid run() {
intsum = 0;
for(int i = 0; i < 10; i++) {
sum+= stratNum + i;
}
add(sum);
}
publicstatic void main(String[] args) throws Exception {
Thread[]threadList = new Thread[10];
for(int i = 0; i < 10; i++) {
threadList[i]= new Accumulator(10 * i + 1);
threadList[i].start();
}
for(int i = 0; i < 10; i++) {
threadList[i].join();
}
System.out.println("Sumis : " + sum);
}
}