不好意思补充一句。。- class Test{
- public static void main(String[] args){
- System.out.oprintln("Hello ");
- http://www.google.com
- System.out.println("World");
- }
- }
复制代码 你的代码中的第4句,http://www.google.com,//后面的内容被注释掉了,相当于你定了一个名叫http的标签,在JAVA中虽然你不能像C那样直接goto http,但是可以用break http或者continue http来使用,常用的形式是:- loop1:
- for (int i=0;i<3;i++) {
- System.out.println("我是循环1");
- loop2:
- for (int j=0;j<3;j++) {
- System.out.println("我是循环2");
- if (j == 2) {
- continue loop1;
- }
- }
- }
复制代码 |