为了账号安全,请及时绑定邮箱和手机立即绑定

Thread thread=new Thread(serviceThread);

while(true){  

                socket=ss.accept();  

                //为每个客户开启一个线程  

                ServiceThread serviceThread=new ServiceThread(socket);  

                Thread thread=new Thread(serviceThread);  

                thread.start();  

  直接serviceThread.start()可以吗?     和这个有什么区别?看视频里是直接serverthread.start()的

正在回答

1 回答

视频中ServerThread是继承Thread类
所以可以直接调用start方法
如果你的ServerThread是实现Runnable接口
那就必须new一个thread把接口实现类装在进来

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

Thread thread=new Thread(serviceThread);

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信