2024年最新【学习笔记】线程原子性-锁 synchronized的用法,mysql复合索引面试题

最后

还有Java核心知识点+全套架构师学习资料和视频+一线大厂面试宝典+面试简历模板可以领取+阿里美团网易腾讯小米爱奇艺快手哔哩哔哩面试题+Spring源码合集+Java架构实战电子书+2021年最新大厂面试题。
在这里插入图片描述

本文已被CODING开源项目:【一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码】收录

需要这份系统化的资料的朋友,可以点击这里获取

}

public static void main(String[] args) {

SynchronizedExample1 example1 = new SynchronizedExample1();

SynchronizedExample1 example2 = new SynchronizedExample1();

ExecutorService executorService = Executors.newCachedThreadPool();//声明一个线程池

//加上线程池相当于我们调用了两个线程

//两个线程调用了同一个对象

executorService.execute(() ->{

example1.test1(1);

});

executorService.execute(() ->{

example2.test1(2);

});

}

}

返回结果:

test1 j:1 — i:0

test1 j:1 — i:1

test1 j:1 — i:2

test1 j:1 — i:3

test1 j:1 — i:4

test1 j:1 — i:5

test1 j:1 — i:6

test1 j:1 — i:7

test1 j:1 — i:8

test1 j:1 — i:9

test1 j:2 — i:0

test1 j:2 — i:1

test1 j:2 — i:2

test1 j:2 — i:3

test1 j:2 — i:4

test1 j:2 — i:5

test1 j:2 — i:6

test1 j:2 — i:7

test1 j:2 — i:8

test1 j:2 — i:9

线程1和线程2按照各自顺序执行,线程一和线程二都能够按照自己的同步代码走下去,但是不一定能保证线程一执行完之后才到线程二执行,这就要看哪一个线程能够率先抢到资源。

修饰方法

package com.lyy.concurrency.sync;

import java.util.concurrent.ExecutorService;

import java.util.concurrent.Executors;

public class SynchronizedExample1 {

//修饰一个方法

public synchronized void test2(int j){

for (int i = 0; i < 10; i++) {

System.out.println(“test2 j:”+j+" — i:"+i);

}

}

public static void main(String[] args) {

SynchronizedExample1 example1 = new SynchronizedExample1();

SynchronizedExample1 example2 = new SynchronizedExample1();

ExecutorService executorService = Executors.newCachedThreadPool();//声明一个线程池

//加上线程池相当于我们调用了两个线程

//两个线程调用了同一个对象

executorService.execute(() ->{

example1.test2(1);

});

executorService.execute(() ->{

example2.test2(2);

});

}

}

返回结果:

test2 j:1 — i:0

test2 j:1 — i:1

test2 j:1 — i:2

test2 j:1 — i:3

test2 j:1 — i:4

test2 j:1 — i:5

test2 j:1 — i:6

test2 j:1 — i:7

test2 j:2 — i:0

test2 j:2 — i:1

test2 j:2 — i:2

test2 j:2 — i:3

test2 j:2 — i:4

test2 j:2 — i:5

test2 j:2 — i:6

test2 j:2 — i:7

test2 j:2 — i:8

test2 j:1 — i:8

test2 j:2 — i:9

test2 j:1 — i:9

我们可以看到1 和2 是交替运行的,但是各自都是按照顺序在执行,这里是因为修饰代码块只能作用于当前调用的对象,我们这里是调用了两个方法所以,两个线程则互不干扰,都是各自执行各自的代码,同步是整个方法

注意:如果SynchronizedExample1 是个子类 那么实现test2的时候是不会携带synchronized关键字 ,因为synchronized是不属于方法声明的一部分,因此,synchronized关键字不能被继承,如果想要去实现这个子类继承synchronized,需要我们手动是实现这个功能

修饰类

package com.lyy.concurrency.sync;

import java.util.concurrent.ExecutorService;

import java.util.concurrent.Executors;

public class SynchronizedExample2 {

// 修饰一个类

public static void test1(int j){

synchronized (SynchronizedExample2.class){

for (int i = 0; i < 10; i++) {

System.out.println(“test1 j:”+j+" — i:"+i);

}

}

}

public static void main(String[] args) {

SynchronizedExample2 example1 = new SynchronizedExample2();

SynchronizedExample2 example2 = new SynchronizedExample2();

ExecutorService executorService = Executors.newCachedThreadPool();//声明一个线程池

//加上线程池相当于我们调用了两个线程 l

//两个线程调用了同一个对象

executorService.execute(() ->{

example1.test1(1);

});

executorService.execute(() ->{

example2.test1(2);

});

}

}

返回结果:

test1 j:1 — i:0

test1 j:1 — i:1

test1 j:1 — i:2

test1 j:1 — i:3

test1 j:1 — i:4

test1 j:1 — i:5

test1 j:1 — i:6

test1 j:1 — i:7

test1 j:1 — i:8

test1 j:1 — i:9

test1 j:2 — i:0

test1 j:2 — i:1

test1 j:2 — i:2

test1 j:2 — i:3

test1 j:2 — i:4

test1 j:2 — i:5

test1 j:2 — i:6

test1 j:2 — i:7

test1 j:2 — i:8

test1 j:2 — i:9

修饰静态方法

package com.lyy.concurrency.sync;

import java.util.concurrent.ExecutorService;

import java.util.concurrent.Executors;

public class SynchronizedExample2 {

//修饰一个静态方法

public static synchronized void test2(int j){

for (int i = 0; i < 10; i++) {

System.out.println(“test2 j:”+j+" — i:"+i);

}

}

public static void main(String[] args) {

SynchronizedExample2 example1 = new SynchronizedExample2();

SynchronizedExample2 example2 = new SynchronizedExample2();

ExecutorService executorService = Executors.newCachedThreadPool();//声明一个线程池

//加上线程池相当于我们调用了两个线程 l

//两个线程调用了同一个对象

executorService.execute(() ->{

example1.test2(1);

});

executorService.execute(() ->{

example2.test2(2);

});

}

}

返回结果:

test2 j:1 — i:0

test2 j:1 — i:1

test2 j:1 — i:2

test2 j:1 — i:3

test2 j:1 — i:4

test2 j:1 — i:5

test2 j:1 — i:6

test2 j:1 — i:7

test2 j:1 — i:8

test2 j:1 — i:9

test2 j:2 — i:0

test2 j:2 — i:1

test2 j:2 — i:2

test2 j:2 — i:3

test2 j:2 — i:4

test2 j:2 — i:5

test2 j:2 — i:6

test2 j:2 — i:7

test2 j:2 — i:8

test2 j:2 — i:9

案例:

线程不安全案例:

最后

光给面试题不给答案不是我的风格。这里面的面试题也只是凤毛麟角,还有答案的话会极大的增加文章的篇幅,减少文章的可读性

Java面试宝典2021版

最常见Java面试题解析(2021最新版)

2021企业Java面试题精选

本文已被CODING开源项目:【一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码】收录

需要这份系统化的资料的朋友,可以点击这里获取

图片转存中…(img-3lTG9DWB-1715232741575)]

[外链图片转存中…(img-94jP4acs-1715232741576)]

最常见Java面试题解析(2021最新版)

[外链图片转存中…(img-1xwbxkBO-1715232741576)]

[外链图片转存中…(img-mKcMyxWo-1715232741576)]

2021企业Java面试题精选

[外链图片转存中…(img-DlM48lpB-1715232741577)]

[外链图片转存中…(img-p0mWV3l2-1715232741577)]

本文已被CODING开源项目:【一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码】收录

需要这份系统化的资料的朋友,可以点击这里获取

  • 5
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值