Runnable接口使用实例

编程技术  /  houtizong 发布于 3年前   97

Runnable接口

a.       该接口只有一个方法:public void run();

b.       实现该接口的类必须覆盖该run方法

c.       实现了Runnable接口的类并不具有任何天生的线程处理能力,这与那些从Thread类继承的类是不同的

d.       为了从一个Runnable对象产生线程,必须再单独创建一个线程对象,并把Runnable对象传递给它。

 

实例:

package com.bijian.thread;/* * 图形抽象类 */public abstract class Shape {abstract void draw ();}

 

package com.bijian.thread;public class Rectangle extends Shape implements Runnable {private int w, h;Rectangle() {// Create a new Thread object that binds to this runnable and start// a thread that will call this runnable's run() methodnew Thread(this).start();}Rectangle(int w, int h) {if (w < 2)throw new IllegalArgumentException("w value " + w + " < 2");if (h < 2)throw new IllegalArgumentException("h value " + h + " < 2");this.w = w;this.h = h;}void draw() {for (int c = 0; c < w; c++)System.out.print('*');System.out.print('\n');for (int r = 0; r < h - 2; r++) {System.out.print('*');for (int c = 0; c < w - 2; c++)System.out.print(' ');System.out.print('*');System.out.print('\n');}for (int c = 0; c < w; c++)System.out.print('*');System.out.print('\n');}public void run() {for (int i = 0; i < 5; i++) {w = rnd(30);if (w < 2)w += 2;h = rnd(10);if (h < 2)h += 2;draw();}}int rnd(int limit) {// Return a random number x in the range 0 <= x < limitreturn (int) (Math.random() * limit);}}

 

package com.bijian.thread;public class RunnableDemo {public static void main(String[] args) {Rectangle r = new Rectangle(5, 6);r.draw();// Draw various rectangles with randomly-chosen widths and heightsnew Rectangle();}}

 

说明:

Rectangle r = new Rectangle(5, 6);

r.draw();

这两句代码会输出一个长5*、宽6*的矩形

 

new Rectangle();

这名代码会启动Rectangle构造方法中的线程,调用此类中的run方法,循环输出5个长和宽随机大小的矩形。

 

请勿发布不友善或者负能量的内容。与人为善,比聪明更重要!

留言需要登陆哦

技术博客集 - 网站简介:
前后端技术:
后端基于Hyperf2.1框架开发,前端使用Bootstrap可视化布局系统生成

网站主要作用:
1.编程技术分享及讨论交流,内置聊天系统;
2.测试交流框架问题,比如:Hyperf、Laravel、TP、beego;
3.本站数据是基于大数据采集等爬虫技术为基础助力分享知识,如有侵权请发邮件到站长邮箱,站长会尽快处理;
4.站长邮箱:[email protected];

      订阅博客周刊 去订阅

文章归档

文章标签

友情链接

Auther ·HouTiZong
侯体宗的博客
© 2020 zongscan.com
版权所有ICP证 : 粤ICP备20027696号
PHP交流群 也可以扫右边的二维码
侯体宗的博客