}
public class Ten {
public static void main(String[] args) throws Exception{
DatagramSocket sendSocket =new DatagramSocket();
DatagramSocket receSocket=new DatagramSocket(6532);
new Thread(new Send(sendSocket)).start();
new Thread(new Rece(receSocket)).start();
}
}这段代码被//标注的Run()方法这总有红线错误“Cannot reduce the visibility of the inherited method from Runnable”请问这是什么原因?