Java多线程简单笔记

本文详细介绍了在Java中通过继承Thread类和Runnable接口创建线程的方法,并探讨了如何设置线程优先级以及使用synchronized关键字实现线程同步。通过实例演示了售票程序中同步锁的应用,展示了同步对并发控制的重要性。
摘要由CSDN通过智能技术生成

创建方式

有两种方式来创建一个线程类,分别是继承Thread类和继承Runnable接口。二者创建实例的方式有所不同。

  • 通过继承线程类Thread来创建线程类
class runner1 extends Thread {
	public void run() {
		for (int i = 0; i < 10; i++) {
			System.out.println("runner1");
		}
	}
}
public class Main {
	public static void main(String[] args) {
		runner1 r1 = new runner1();
		runner1 r2 = new runner1();
		r1.start();
		r2.start();
	}
}
  • 建立一个实现Runnable接口的类来创建线程
class runner2 implements Runnable {
	public void run() {
		for (int i = 0; i < 10; i++) {
			System.out.println("runner2");
		}
	}
}
public class Main {
	public static void main(String[] args) {
		Thread r1 = new Thread(new runner2());
		Thread r2 = new Thread(new runner2());
		r1.start();
		r2.start();
	}
}

设置优先级

可以通过调用setPriority()来设置一个进程的优先级,Thread定义了其中3个常数。

  • MAX_PRIORITY,最大优先级(值为10)
  • NORM_PRIORITY,默认优先级(值为5)
  • MIN_PRIORITY,最小优先级(值为1)

同步锁-synchronized关键字

synchronized关键字可以保证被它修饰的方法或者代码块在任意时刻只能有一个线程执行。
以一个模拟售票程序为例:

public class Main {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Share share = new Share(100);
		for (int i = 0; i < 5; i++) {
			new Seller(share, i + 1).start();
		}
	}
}

class Share {
	public int maxn;
	public int rest;

	public Share(int n) {
		rest = n;
		maxn = n;
	}

	public synchronized boolean get_ticket(int id) {
		if (rest > 0) {
			System.out.println(id + "号窗口卖出一张票,剩余" + --rest + "张票");
			return true;
		}
		return false;
	}
}

class Seller extends Thread {
	private Share shared;
	private int id;

	public Seller(Share share, int id) {
		this.shared = share;
		this.id = id;
	}

	public void run() {
		while (shared.get_ticket(id)) {
			try {
				Thread.sleep(100);
			} catch (InterruptedException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
	}
}

运行截图
在这里插入图片描述

如果把同步锁去掉,再次运行:
在这里插入图片描述
可以发现剩余的票数不是有序的了,因此可能会出现同一张票被两个窗口同时卖出的清空。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值