是否可以在main方法中创建标签,然后在其他方法中使用?

请考虑以下简单示例来说明我的问题。

public class work{
//***********************************************************
static public class listen implements Runnable{

    public listen(....)
    {
       ......
    }

    @Override
    public void run()
    {
        ....

        if(Msg.startsWith("Work Done"))
        {
             break serverSock;   //HOW CAN I DO THIS ??
       }
    }
  }
//********************************************************
public static void main(String[] args){

    Thread L = new Thread (new listen(...));
    L.start();

    //main thread is busy ...

    serverSock:
    sock.close();
 }
}

最佳答案

我在flag方法中使用listen解决了它

if statement方法中的main

10-06 06:07