中科院云平台架构师,专注于数字化、智能化,技术方向:云、Linux内核、AI、MES/ERP/CRM/OA、物联网、传感器、大数据、ML、微服务。
分类: Java
2013-12-19 17:26:55
声明静态内部变量的抽象类
package atest.privateStatic;
public abstract class TypeObject {
private static int id = 0; // private static 变量 by hiya
private int typeId;
private String word;
protected TypeObject(String word){
id = id + 1;
this.typeId = id;
this.word = word;
System.out.println("id=" + id + " word=" + word);
}
}
// 具体实现类
package atest.privateStatic;
public class StringType extends TypeObject {
protected StringType(String word) {
super(word);
// TODO 自動生成されたコンストラクター?スタブ
}
}
多线程间测试类
package atest.privateStatic;
public class PrivateStaticTest {
/**
* [メソッドの説明を書きましょう]
* @param args
*/
public static void main(String[] args) {
// TODO 自動生成されたメソッド?スタブ
PrivateStaticTest a = new PrivateStaticTest();
Test1 test1 = a.new Test1();
Thread t1 = new Thread(test1);
t1.start();
try {
Thread.sleep(1000);
} catch (Exception e){}
// try {
// a.wait();
// } catch (InterruptedException e) {
// // TODO 自動生成された catch ブロック
// e.printStackTrace();
// }
PrivateStaticTest b = new PrivateStaticTest();
Test2 test2 = b.new Test2();
Thread t2 = new Thread(test2);
t2.start();
}
class Test1 implements Runnable{
public void run() {
for (int i = 0; i<10; i++){
StringType a1 = new StringType("h1h");
//StringType a2 = new StringType("h2h");
}
}
}
class Test2 implements Runnable{
public void run() {
for (int i = 0; i<10; i++){
StringType a1 = new StringType("m1m");
//StringType a2 = new StringType("m2m");
}
}
}
}
测试结果
http://hiyachen.blog.chinaunix.net
id=1 word=h1h
id=2 word=h1h
id=3 word=h1h
id=4 word=h1h
id=5 word=h1h
id=6 word=h1h
id=7 word=h1h
id=8 word=h1h
id=9 word=h1h
id=10 word=h1h
id=11 word=m1m
id=12 word=m1m
id=13 word=m1m
id=14 word=m1m
id=15 word=m1m
id=16 word=m1m
id=17 word=m1m
id=18 word=m1m
id=19 word=m1m
id=20 word=m1m