• 大小: 17.58MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-08
  • 语言: Java
  • 标签: 考试  

资源简介

环境:jdk1.6以上,oracle,myeclipse...............................................................

资源截图

代码片段和文件信息

package com.briup.test.bean;


public class PriorityTest implements Runnable{

private long count;
private Thread t;
private boolean flag;//控制开始和停止的变量
public PriorityTest(int priority){
t = new Thread(this);
t.setPriority(priority);
}
public void start(){
flag = true;
t.start();
}
public void stop(){
flag = false;
}
public void join()throws Exception{
t.join();
}
public void getCount(){
System.out.println(count);
}
public void run(){
while(flag){
count++;
}
}
public static void main(String args[]){
PriorityTest p1 = new PriorityTest(Thread.NORM_PRIORITY);
//PriorityTest p2 = new PriorityTest(Thread.NORM_PRIORITY);
PriorityTest p2 = new PriorityTest(Thread.NORM_PRIORITY-1);
p1.start();
p2.start();

try{
Thread.currentThread().sleep(1000);
p1.stop();
p2.stop();
p1.join();
p2.join();
}catch( Exception e){
e.printStackTrace();
}
p1.getCount();
p2.getCount();
}


}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-04-22 22:55  考试系统\
     目录           0  2018-04-22 22:51  考试系统\mytest\
     文件       65536  2018-04-22 22:54  考试系统\mytest.DMP
     文件        4323  2018-04-22 22:51  考试系统\mytest\.classpath
     文件         433  2018-04-22 22:51  考试系统\mytest\.myhibernatedata
     文件         291  2018-04-22 22:51  考试系统\mytest\.mymetadata
     文件         254  2018-04-22 22:51  考试系统\mytest\.mystrutsdata
     文件        1697  2018-04-22 22:51  考试系统\mytest\.project
     目录           0  2018-04-22 22:51  考试系统\mytest\.settings\
     文件         500  2018-04-22 22:51  考试系统\mytest\.settings\.jsdtscope
     文件         352  2018-04-22 22:51  考试系统\mytest\.settings\org.eclipse.core.resources.prefs
     文件          83  2018-04-22 22:51  考试系统\mytest\.settings\org.eclipse.core.runtime.prefs
     文件          49  2018-04-22 22:51  考试系统\mytest\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2018-04-22 22:51  考试系统\mytest\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2018-04-22 22:51  考试系统\mytest\src\
     目录           0  2018-04-22 22:51  考试系统\mytest\src\com\
     目录           0  2018-04-22 22:51  考试系统\mytest\src\com\briup\
     目录           0  2018-04-22 22:51  考试系统\mytest\src\com\briup\test\
     文件         265  2018-04-22 22:51  考试系统\mytest\src\com\briup\test\ApplicationResources.properties
     目录           0  2018-04-22 22:51  考试系统\mytest\src\com\briup\test\bean\
     目录           0  2018-04-22 22:51  考试系统\mytest\src\com\briup\test\bean\exam\
     文件        1037  2018-04-22 22:51  考试系统\mytest\src\com\briup\test\bean\exam\Ajaxjsf.hbm.xml
     文件        1244  2018-04-22 22:51  考试系统\mytest\src\com\briup\test\bean\exam\Ajaxjsf.java
     文件        1133  2018-04-22 22:51  考试系统\mytest\src\com\briup\test\bean\exam\Banji.hbm.xml
     文件        1406  2018-04-22 22:51  考试系统\mytest\src\com\briup\test\bean\exam\Banji.java
     文件        1400  2018-04-22 22:51  考试系统\mytest\src\com\briup\test\bean\exam\Chengji.hbm.xml
     文件        1956  2018-04-22 22:51  考试系统\mytest\src\com\briup\test\bean\exam\Chengji.java
     文件        1028  2018-04-22 22:51  考试系统\mytest\src\com\briup\test\bean\exam\Ejb.hbm.xml
     文件        1244  2018-04-22 22:51  考试系统\mytest\src\com\briup\test\bean\exam\Ejb.java
     文件         645  2018-04-22 22:51  考试系统\mytest\src\com\briup\test\bean\exam\Examstate.hbm.xml
     文件         790  2018-04-22 22:51  考试系统\mytest\src\com\briup\test\bean\exam\Examstate.java
............此处省略541个文件信息

评论

共有 条评论