什么是线程
多线程的应用场景
并行就是两个任务同时运行,就是甲任务进行的同时,乙任务也在进行。(需要多核CPU)
并发是指两个任务都请求运行,而处理器只能按受一个任务,就把这两个任务安排轮流进行,由于时间间隔较短,使人感觉两个任务都在运行。
比如我跟两个网友聊天,左手操作一个电脑跟甲聊,同时右手用另一台电脑跟乙聊天,这就叫并行。
如果用一台电脑我先给甲发个消息,然后立刻再给乙发消息,然后再跟甲聊,再跟乙聊。这就叫并发。
Java程序运行原理
JVM的启动是多线程的吗
public class Demo2_Thread {
public static void main(String[] args) {
MyThread mt = new MyThread(); //4,创建自定义类的对象
mt.start(); //5,开启线程
for(int i = 0; i < 3000; i++) {
System.out.println("bb");
}
}
}
class MyThread extends Thread { //1,定义类继承Thread
public void run() { //2,重写run方法
for(int i = 0; i < 3000; i++) { //3,将要执行的代码,写在run方法中
System.out.println("aaaaaaaaaaaaaaa");
}
}
}
public class Demo3_Runnable {
public static void main(String[] args) {
MyRunnable mr = new MyRunnable(); //4,创建自定义类对象
Thread t = new Thread(mr); //5,将其当作参数传递给Thread的构造函数
t.start(); //6,开启线程
for(int i = 0; i < 3000; i++) {
System.out.println("bb");
}
}
}
class MyRunnable implements Runnable { //1,自定义类实现Runnable接口
@Override
public void run() { //2,重写run方法
for(int i = 0; i < 3000; i++) { //3,将要执行的代码,写在run方法中
System.out.println("aaaaaaaaaaaaaaaaaa");
}
}
}
查看源码的区别:
a.继承Thread : 由于子类重写了Thread类的run(), 当调用start()时, 直接找子类的run()方法
b.实现Runnable : 构造函数中传入了Runnable的引用, 成员变量记住了它, start()调用run()方法时内部判断成员变量Runnable的引用是否为空, 不为空编译时看的是Runnable的run(),运行时执行的是子类的run()方法
继承Thread
好处是:可以直接使用Thread类中的方法,代码简单
弊端是:如果已经有了父类,就不能用这种方法
实现Runnable接口
好处是:即使自己定义的线程类有了父类也没关系,因为有了父类也可以实现接口,而且接口是可以多实现的
弊端是:不能直接使用Thread中的方法需要先获取到线程对象后,才能得到Thread的方法,代码复杂
继承Thread类
new Thread() { //1.继承Thread类
public void run() { //2.重写run方法
for (int i = 0; i < 1000; i++) { //3.将要执行的代码写在run方法中
System.out.println("saaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa");
}
}
}.start(); //4.开启线程
new Thread(new Runnable() { //1.将Runnable的子类对象传递给Thread
@Override
public void run() { //2.重写run方法
for (int i = 0; i < 1000; i++) { //3.将要执行的代码写在run方法中
System.out.println("bbbbbbbbbbb");
}
}
}).start(); //4.开启线程
new Thread() { //1.继承Thread类
public void run() { //2.重写run方法
for (int i = 0; i < 1000; i++) { //3.将要执行的代码写在run方法中
System.out.println("线程名为:"+getName());
}
}
}.start(); //4.开启线程
new Thread("主线程1") { //1.继承Thread类
public void run() { //2.重写run方法
for (int i = 0; i < 1000; i++) { //3.将要执行的代码写在run方法中
System.out.println("线程名为:"+getName());
}
}
}.start(); //4.开启线程
Thread t1 = new Thread() { //1.继承Thread类
public void run() { //2.重写run方法
for (int i = 0; i < 1000; i++) { //3.将要执行的代码写在run方法中
System.out.println("线程名为:"+getName());
}
}
}; //4.开启线程
t1.setName("设置线程名1");
t1.start();
Thread.currentThread().setName("1001"); //获取主函数线程的引用,并改名字
System.out.println(Thread.currentThread().getName()); //获取主函数线程的引用,并获取名字
new Thread(new Runnable() { //1.将Runnable的子类对象传递给Thread
@Override
public void run() { //2.重写run方法
for (int i = 0; i < 10; i++) { //3.将要执行的代码写在run方法中
System.out.println("bbbbbbbbbbb");
}
}
}).start(); //4.开启线程
new Thread(new Runnable() { //1.将Runnable的子类对象传递给Thread
@Override
public void run() { //2.重写run方法
for (int i = 0; i < 10; i++) { //3.将要执行的代码写在run方法中
System.out.println("倒计时"+i+"秒");
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}).start(); //4.开启线程
public static void main(String[] args) {
Thread t1 = new Thread() { //1.继承Thread类
public void run() { //2.重写run方法
for (int i = 0; i < 2; i++) { //3.将要执行的代码写在run方法中
System.out.println("线程名为:" + getName());
}
}
}; //4.开启线程
Thread t2 = new Thread() { //1.将Runnable的子类对象传递给Thread
@Override
public void run() { //2.重写run方法
for (int i = 0; i < 5; i++) { //3.将要执行的代码写在run方法中
System.out.println("倒计时"+i+"秒");
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}; //4.开启线程
t2.setDaemon(true); //将t2设置为守护线程
t1.start();
t2.start();
}
}
public static void main(String[] args) {
final Thread t1 = new Thread() { //1.继承Thread类
public void run() { //2.重写run方法
for (int i = 0; i < 5; i++) { //3.将要执行的代码写在run方法中
System.out.println("线程名为:" + getName());
}
}
}; //4.开启线程
Thread t2 = new Thread() { //1.将Runnable的子类对象传递给Thread
@Override
public void run() { //2.重写run方法
for (int i = 0; i < 5; i++) { //3.将要执行的代码写在run方法中
if (i==2){
try {
// t1.join(); //匿名内部类在使用它所在方法中的局部变量时必须用final修饰
t1.join(1); //插队指定时间,在指定时间执行完后,两条线程继续交替执行
} catch (InterruptedException e) {
e.printStackTrace();
}
}
System.out.println("倒计时"+i+"秒");
}
}
}; //4.开启线程
t1.start();
t2.start();
}
public static void main(String[] args) {
new MyThread().start();
new MyThread().start();
}
}
class MyThread extends Thread{
public void run(){
for (int i = 0 ;i<1000;i++){
if (i % 10 ==0){
Thread.yield();
}
System.out.println(getName()+"线程"+i);
}
}
}
public static void main(String[] args) {
Thread t1 = new Thread() { //1.继承Thread类
public void run() { //2.重写run方法
for (int i = 0; i < 100; i++) { //3.将要执行的代码写在run方法中
System.out.println("线程名为:" + getName()+"____"+i);
}
}
}; //4.开启线程
Thread t2 = new Thread() { //1.将Runnable的子类对象传递给Thread
@Override
public void run() { //2.重写run方法
for (int i = 0; i < 100; i++) { //3.将要执行的代码写在run方法中
System.out.println(getName()+"倒计时" + i + "秒");
}
}
}; //4.开启线程
t1.setPriority(Thread.MIN_PRIORITY);//设置最小优先级
t2.setPriority(Thread.MAX_PRIORITY);//设置最大优先级
t1.start();
t2.start();
}
}
public class Synchronized {
public static void main(String[] agr) {
final printer p = new printer();
new Thread() {
public void run() {
while (true) {
p.print1();
}
}
}.start();
new Thread() {
public void run() {
while (true) {
p.print2();
}
}
}.start();
}
}
class printer {
public void print1() {
demo d = new demo();
synchronized (d) { //锁对象可以是任意对象,但是被锁的代码需要保证是同一把锁,不能用匿名对象
System.out.print("北");
System.out.print("京");
System.out.print("欢");
System.out.print("迎");
System.out.print("您");
System.out.print("\r\n");
}
}
/*
* 非静态同步函数的锁是:this
* 静态的同步函数的锁是:字节码对象
*/
public void print2() {
demo d = new demo();
synchronized (d) {
System.out.print("武");
System.out.print("汉");
System.out.print("热");
System.out.print("干");
System.out.print("面");
System.out.print("\r\n");
}
}
}
class demo {
}
public class Synchronized {
public static void main(String[] agr) {
final printer p = new printer();
new Thread() {
public void run() {
while (true) {
p.print1();
}
}
}.start();
new Thread() {
public void run() {
while (true) {
p.print2();
}
}
}.start();
}
}
/**
* 非静态的同步方法的锁对象是this
* 静态的同步方法的锁对象是该类的字节码对象
*/
class printer {
public synchronized void print1() {
//锁对象可以是任意对象,但是被锁的代码需要保证是同一把锁,不能用匿名对象
//使用synchronized关键字修饰一个方法, 该方法中所有的代码都是同步的
System.out.print("北");
System.out.print("京");
System.out.print("欢");
System.out.print("迎");
System.out.print("您");
System.out.print("\r\n");
}
/*
* 非静态同步函数的锁是:this
* 静态的同步函数的锁是:字节码对象
*/
public void print2() {
synchronized (this) {
System.out.print("武");
System.out.print("汉");
System.out.print("热");
System.out.print("干");
System.out.print("面");
System.out.print("\r\n");
}
}
}
public class Demo2_Synchronized {
public static void main(String[] args) {
TicketsSeller t1 = new TicketsSeller();
TicketsSeller t2 = new TicketsSeller();
TicketsSeller t3 = new TicketsSeller();
TicketsSeller t4 = new TicketsSeller();
t1.setName("窗口1");
t2.setName("窗口2");
t3.setName("窗口3");
t4.setName("窗口4");
t1.start();
t2.start();
t3.start();
t4.start();
}
}
class TicketsSeller extends Thread {
private static int tickets = 100;
static Object obj = new Object();
public TicketsSeller() {
super();
}
public TicketsSeller(String name) {
super(name);
}
public void run() {
while(true) {
synchronized(obj) {
if(tickets <= 0)
break;
try {
Thread.sleep(10);//线程1睡,线程2睡,线程3睡,线程4睡
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(getName() + "...这是第" + tickets-- + "号票");
}
}
}
}
多次启动一个线程是非法的
public class Demo2_Synchronized {
public static void main(String[] args) {
TicketsSeller ticketsSeller = new TicketsSeller();
/* Thread t1 = new Thread(ticketsSeller);//多次启动一个线程是非法的
t1.start();
t1.start();
t1.start();
t1.start();*/
}
}
class TicketsSeller implements Runnable {
private static int tickets = 100;
public void run() {
while(true) {
synchronized(TicketsSeller.class) {
if(tickets <= 0)
break;
try {
Thread.sleep(10);//线程1睡,线程2睡,线程3睡,线程4睡
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(Thread.currentThread().getName() + "...这是第" + tickets-- + "号票");
}
}
}
}
private static String s1 = "筷子左";
private static String s2 = "筷子右";
public static void main(String[] args) {
new Thread() {
public void run() {
while (true) {
synchronized (s1) {
System.out.println(getName() + "...拿到" + s1 + "等待" + s2);
synchronized (s2) {
System.out.println(getName() + "...拿到" + s2 + "开吃");
}
}
}
}
}.start();
new Thread() {
public void run() {
while (true) {
synchronized (s2) {
System.out.println(getName() + "...拿到" + s2 + "等待" + s1);
synchronized (s1) {
System.out.println(getName() + "...拿到" + s1 + "开吃");
}
}
}
}
}.start();
}