資源簡介
環(huán)境: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??考試系統(tǒng)\
?????目錄???????????0??2018-04-22?22:51??考試系統(tǒng)\mytest\
?????文件???????65536??2018-04-22?22:54??考試系統(tǒng)\mytest.DMP
?????文件????????4323??2018-04-22?22:51??考試系統(tǒng)\mytest\.classpath
?????文件?????????433??2018-04-22?22:51??考試系統(tǒng)\mytest\.myhibernatedata
?????文件?????????291??2018-04-22?22:51??考試系統(tǒng)\mytest\.myme
?????文件?????????254??2018-04-22?22:51??考試系統(tǒng)\mytest\.mystrutsdata
?????文件????????1697??2018-04-22?22:51??考試系統(tǒng)\mytest\.project
?????目錄???????????0??2018-04-22?22:51??考試系統(tǒng)\mytest\.settings\
?????文件?????????500??2018-04-22?22:51??考試系統(tǒng)\mytest\.settings\.jsdtscope
?????文件?????????352??2018-04-22?22:51??考試系統(tǒng)\mytest\.settings\org.eclipse.core.resources.prefs
?????文件??????????83??2018-04-22?22:51??考試系統(tǒng)\mytest\.settings\org.eclipse.core.runtime.prefs
?????文件??????????49??2018-04-22?22:51??考試系統(tǒng)\mytest\.settings\org.eclipse.wst.jsdt.ui.superType.container
?????文件???????????6??2018-04-22?22:51??考試系統(tǒng)\mytest\.settings\org.eclipse.wst.jsdt.ui.superType.name
?????目錄???????????0??2018-04-22?22:51??考試系統(tǒng)\mytest\src\
?????目錄???????????0??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\
?????目錄???????????0??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\briup\
?????目錄???????????0??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\briup\test\
?????文件?????????265??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\briup\test\ApplicationResources.properties
?????目錄???????????0??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\briup\test\bean\
?????目錄???????????0??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\briup\test\bean\exam\
?????文件????????1037??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\briup\test\bean\exam\Ajaxjsf.hbm.xm
?????文件????????1244??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\briup\test\bean\exam\Ajaxjsf.java
?????文件????????1133??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\briup\test\bean\exam\Banji.hbm.xm
?????文件????????1406??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\briup\test\bean\exam\Banji.java
?????文件????????1400??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\briup\test\bean\exam\Chengji.hbm.xm
?????文件????????1956??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\briup\test\bean\exam\Chengji.java
?????文件????????1028??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\briup\test\bean\exam\Ejb.hbm.xm
?????文件????????1244??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\briup\test\bean\exam\Ejb.java
?????文件?????????645??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\briup\test\bean\exam\Examstate.hbm.xm
?????文件?????????790??2018-04-22?22:51??考試系統(tǒng)\mytest\src\com\briup\test\bean\exam\Examstate.java
............此處省略541個文件信息
評論
共有 條評論