摘要: 在Java中,synchronized关键字是用来控制线程同步的,就是在多线程的环境下,控制synchronized代码段不被多个线程同时执行。 测试代码: /** * @author MM * @create 2018-08-28 15:18 **/public class Synchronize 阅读全文
posted @ 2020-04-25 20:30 小阿Q的博客 阅读(196) 评论(0) 推荐(0) 编辑
摘要: public class CreateThreadDemo { public static void main(String[] args) { //继承thread接口(这里用匿名内部类),并重写该类的run方法 //调用thread start方法 Thread thread = new Thr 阅读全文
posted @ 2020-04-25 11:08 小阿Q的博客 阅读(149) 评论(0) 推荐(0) 编辑