Files
budd/src/main/java/osc/git/eh3/test/TestCounter.java
lixiangrong efdecfb038 1
Signed-off-by: lixiangrong <lixiangrong@pxene.com>
2016-03-23 13:59:20 +08:00

11 lines
222 B
Java

package osc.git.eh3.test;
public class TestCounter {
public static void main(String[] args) throws Exception {
for (int i = 0; i < 8000; i++) {
new Thread(new TestThread()).start();
// Thread.sleep(5);
}
}
}