码迷,mamicode.com
首页 > 其他好文 > 详细

Thread类和Runable接口使用

时间:2018-12-27 22:56:00      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:star   ati   ext   span   style   ack   rri   end   start   

不废话,就一个类,直接拷贝代码执行

 1 package com.jtfr.demo;
 2 
 3 /**
 4  * 主要:继承 Thread 类和 Runnable接口
 5  * @author 陈康明 qq:1123181523
 6  * @date 2018年12月27日
 7  */
 8 public class TestBaseDemo {
 9     
10     public static void main(String[] args) {
11         new MyThread().start();
12         new Thread(new MyRunnable()).start();
13     }
14 }
15 
16 /**
17  * 继承 Thread 类
18  */
19 class MyThread extends Thread{
20     @Override
21     public void run() {
22         System.out.println("继承的 Thread 类");
23     }
24 }
25 /**
26  * 实现的 Runnable 接口
27  */ 
28 class MyRunnable implements Runnable{
29 
30     @Override
31     public void run() {
32         System.out.println("实现的 Runnable 接口");
33     }
34     
35 }

 

Thread类和Runable接口使用

标签:star   ati   ext   span   style   ack   rri   end   start   

原文地址:https://www.cnblogs.com/jtfr/p/10187390.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!