java线程
文章平均质量分 72
laomaogary
这个作者很懒,什么都没留下…
展开
-
Thread类中sleep是为什么是静态方法
Thread sleep的含义Thread类中sleep是静态方法,表示当前线程休眠。Thread的API public static native void sleep(long millis) throws InterruptedException;/** * Causes the currently executing thread to s原创 2015-09-01 15:53:05 · 4809 阅读 · 1 评论 -
Thread线程中启动线程
要想搞明白这个问题,首先必须理解 线程的本质package com.linkage.deadlock;public class Demo1 implements Runnable {@Overridepublic void run() { // TODO Auto-generated method stub while(true){System.out.原创 2015-09-01 15:12:53 · 1546 阅读 · 0 评论