这样就对了
public class test{
        public static void main(String [] arg)
        {
                aaa:
                {System.out.println("hello");
                for(;;){
                        System.out.println("hello 1");
                        break aaa;
                }
                }
        }
}