📄 testmt.java
字号:
package sms.PHS;
public class TestMT
extends Thread {
public static TestClient cmppclient = null;
public static String ph = null;
public TestMT(TestClient cp, String ph) {
cmppclient = cp;
this.ph = ph;
}
public TestMT(TestClient cp) {
cmppclient = cp;
this.ph = "00000";
}
public TestMT() {
}
public void run() {
try {
while (true) {
if (TestClient.ht.size() > 0) {
cmppclient.submit( (String) TestClient.ht.remove(0));
}
}
}
catch (Exception ex) {
}
}
public static void main(String[] args) {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -