示例#1
0
文件: Init.java 项目: Canardou/ptut
 /** Constructeur de Init */
 public Init() {
   ThreadRobot tRobot = new ThreadRobot();
   ThreadCom tCom = new ThreadCom(tRobot);
   this.initTest(tRobot);
   tRobot.start();
   tCom.start();
 }