博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JAVA 两种方法实现多线程(继承Thread和实现Runnable接口)
阅读量:5126 次
发布时间:2019-06-13

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

1 package h14; 2  3 public class Demo { 4  5     /** 6      * @param args 7      */ 8     public static void main(String[] args) { 9         // TODO Auto-generated method stub10         Thread cat = new Cat();11         cat.start();12         Runnable dog = new Dog();13         Thread t = new Thread(dog);14         t.start();15     }16 17 }18 19 class Cat extends Thread{20 21     @Override22     public void run() {23         // TODO Auto-generated method stub24         super.run();25         int i = 0;26         while(true){27             try {28                 i++;29                 Thread.sleep(1000);30             } catch (InterruptedException e) {31                 // TODO Auto-generated catch block32                 e.printStackTrace();33             }34             System.out.println(i);35         }36     }37     38 }39 40 class Dog implements Runnable{41 42     @Override43     public void run() {44         // TODO Auto-generated method stub45         System.out.print("hello");46         47     }48     49 }

 

转载于:https://www.cnblogs.com/hzzhero/p/4574443.html

你可能感兴趣的文章
使用offsetof对结构体指针偏移操作
查看>>
浅谈程序员的职业规划
查看>>
mac安装需要的骚操作
查看>>
阅读引擎开源项目调研总结
查看>>
自动生成业务单据流水号方案
查看>>
python 下的数据结构与算法---6:6大排序算法
查看>>
android intent和intent action大全
查看>>
linux基本命令2
查看>>
com.alibaba.fastjson.JSONObject cannot be cast to XXX异常解决
查看>>
Delphi DBGrid 导出csv
查看>>
JVM第五部分 高效并发
查看>>
python:浅析python 中__name__ = '__main__' 的作用(转载)
查看>>
《linux就该这么学》第六节,计划任务和用户身份管理!
查看>>
php: +1天, +3个月, strtotime(): +1 day, +3 month
查看>>
mysql: 模糊查询 feild like keyword or feild like keyword , concat(feild1,feild2,feild3) like keyword...
查看>>
Python小数据池
查看>>
JavaScript 函数(作用域以及闭包)
查看>>
ORACLE EBS 多账套总结
查看>>
使用MyBatista----上传图像
查看>>
神经网络中使用Batch Normalization 解决梯度问题
查看>>