博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java中的Thread与Runnable的区别
阅读量:6278 次
发布时间:2019-06-22

本文共 911 字,大约阅读时间需要 3 分钟。

1、thread不能设置共享资源、runnable可以设置共享资源
2、代码风格与结构,ruannbale更好些
3、
 
public class TestThread extends Thread {
    private int count = 5;
    
    @Override
    public void run() {
          for(int i=0; i<10; i++) {
              if(this.count>0) {
                   System.out.println(Thread.currentThread().getName + "-----" +this.count--);
              }
          }
    }
    
    public static void main(String[] args) {
         TestThread test1 = new TestThread();
          test1.start();
 
         
         TestThread test2 = new TestThread();
          test2.start();
    }
}
 
=============
 
public class TestRunnable implements Runnable {
    private int count = 5;
 
    public TestRunnable() {
         
    }
 
    @Override
    public void run() {
          for(int i=0; i< 20; i++) {
              if(this.count>0) {
                   System.out.println(Thread.currentThread().getName() + "----" + this.count--);
              }
          }
    }
}
 
public class Test {
    public static void main(String[] args) {
          TestRunnable tr = new TestRunnable();
           new Thread(tr).start("A");
           new Thread(tr).start("B");   
    }
 
}

转载于:https://www.cnblogs.com/Eric-Zxl/p/4024594.html

你可能感兴趣的文章
rpmfusion 的国内大学 NEU 源配置
查看>>
spring jpa 配置详解
查看>>
IOE,为什么去IOE?
查看>>
java 用反射简单应用,将Object简单转换成map
查看>>
Storm中的Worker
查看>>
dangdang.ddframe.job中页面修改表达式后进行检查
查看>>
Web基础架构:负载均衡和LVS
查看>>
Linux下c/c++相对路径动态库的生成与使用
查看>>
SHELL实现跳板机,只允许用户执行少量允许的命令
查看>>
SpringBoot 整合Redis
查看>>
2014上半年大片早知道
查看>>
Android 6.0指纹识别App开发案例
查看>>
正文提取算法
查看>>
轻松学PHP
查看>>
Linux中的网络监控命令
查看>>
this的用法
查看>>
windows下安装redis
查看>>
CentOS7 yum 安装git
查看>>
启动日志中频繁出现以下信息
查看>>
httpd – 对Apache的DFOREGROUND感到困惑
查看>>