波斯马BOSSMA Information Technology

2007年10月11日 发布的所有日志

Java多线程学习(一)

发布时间:2007年10月11日 / 分类:JAVA / 抢沙发

今天看了下Java的多线程,做个纪录: package com.verycodes.demo.thread; public class ThreadDemo { public static void main(String args[]) { Thread1 threadone = new Thread1(); Thread threadtwo = new Thread(new Thread2()); // 设置优先级 threa...