vote up 2 vote down star

A colleague came across some code that looked like this and couldn't understand how it could ever compile:

class FooClass {
  public static void bar(String arg) {
     System.out.println("arg = " + arg);
     http://www.google.com
     System.out.println("Done!");
  }
}

Basically, there was a random URL pasted in the middle of a method but javac didn't care.

We worked out so I'll post the answer if no-one else finds out but I thought it was interesting enough to post.

flag

BTW, it works in C# (and probably C++) too. – GalacticCowboy May 27 at 17:02
1  
Only one URL with each protocol is allowed, though (one "http", one "https", one "ftp", etc.). javac is kind of picky about that. – mmyers May 27 at 17:11
If you liked this you may like javapuzzlers.com This is one of the many puzzles it contains. – Peter Lawrey May 27 at 20:04

7 Answers

vote up 15 vote down check

"http:" is interpreted as a label. What follows is an end-of-line comment.

link|flag
1  
break http; is just a secret identity of a GOTO statement they keep saying is EVIL and will not make a part of the language. I had no idea there were labels in Java... although I don't mean to say I consider GOTO and labels as evil as many others... – MasterPeter May 27 at 17:06
vote up 1 vote down

Easy. The highlighting on this site shows why.

http: is a label, as in break http;

//www.google.com is a comment.

link|flag
vote up 1 vote down

http: is the label. // starts the comment.

link|flag
vote up 3 vote down

You have a label

http:

followed by a comment

//www.google.com
link|flag
vote up 1 vote down

"http:" is a label, and the part after the "//" is, of course, a comment

link|flag
vote up 4 vote down

Because it's GOOGLE man!

link|flag
vote up 0 vote down

Another example with two http://

public class Main {
    {
        http://en.wikipedia.org/wiki/Hello_world_program
        System.out.print("Hello ");
    } {
        http://java.sun.com/docs/books/tutorial/getStarted/application/index.html
        System.out.println("World!");
    }

    public static void main(String... args) {
        new Main();
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.