vote up 1 vote down star

This is a syntax question.

I was looking at some open source files and I met some syntax that I cannot recognize and I was hoping you could clear it up for me.

(This is taken from the Main.java in the Rhino debugger here)

public static String[] processOptions(String args[])
    {
        String usageError;
        goodUsage: for (int i = 0; ; ++i) {
            if (i == args.length) {
                return new String[0];
            }
            String arg = args[i];
            if (!arg.startsWith("-")) {
                processStdin = false;
                fileList.add(arg);
                String[] result = new String[args.length - i - 1];
                System.arraycopy(args, i+1, result, 0, args.length - i - 1);
                return result;
            }
            if (arg.equals("-version")) {
                if (++i == args.length) {
                    usageError = arg;
                    break goodUsage;
                }
                int version;
                try {
                    version = Integer.parseInt(args[i]);
                } catch (NumberFormatException ex) {
                    usageError = args[i];
                    break goodUsage;
                }

My question is what is goodUsage? what is the name of this syntax, and what is it used for?

flag

31% accept rate
14  
Essentially, it means the author of the code is going to be attacked by a raptor: xkcd.com/292 – Tenner Oct 27 at 20:56
4  
By the way jaimon, looking at your older questions, you should really consider accepting the answer that best helps you solve your problems (if any). You can do that by ticking the mark to the left of an answer. – Jonik Oct 27 at 20:58
Tenner, this is not the same as goto labels, java labels work only with loops. I guess the raptor doesn't care :) – Piligrim Oct 27 at 23:24

8 Answers

vote up 15 vote down check

They are labels. They are used to be able to break out of an inner block into a block that is not the one immediately surrounding it.

Here is the relevant part of the Java Language Specification that deals with labels.

You likely haven't seen it before because 99% of the time code can be rewritten to not use such a thing, and it's probably a sign that the method is doing too much.

(Also I should mention for anyone that happens to come across this question/answer from a search engine, it isn't new syntax - it's been around since the version one of the JLS.)

link|flag
2  
100% of the time it can be re-written not to use them, 99.9% (Maybe that should be + .1%) the re-written version is more clear. – Bill K Oct 27 at 20:59
2  
This description emphasizes the irony in the choice of label name. – EmFi Oct 27 at 21:00
1  
Labeled breaks are often useful when you must have a for() loop several layers deep. It often makes no sense to break out the inner for() loop into another method if you're iterating over a 2D or 3D array. – jprete Oct 27 at 21:02
@jprete I would consider that case the 1% – matt b Oct 28 at 12:49
vote up 3 vote down

Makes me think of the following brain-teaser:

public class Main {
    public static void main(String[] args) {
        http://stackoverflow.com
        System.out.println("Does it?");
    }
}

Does it compile?

Edit: SO's syntax highlighter does its job too good!

link|flag
nice catch...! ;) – p3t0r Oct 27 at 21:15
totally, thanks :) – special0ne Oct 29 at 21:04
vote up 2 vote down

It is called a labeled break. It can be used to specify which loop you want to break instead of the innermost as it would normally do. Here is a good example: http://java.sun.com/docs/books/tutorial/java/nutsandbolts/branch.html

link|flag
vote up 0 vote down

It's a label, see wikepedia article

link|flag
vote up 0 vote down

It is a labled break statement

link|flag
vote up 1 vote down

That's called a label. It lets you specify which loop you're breaking out of.

link|flag
vote up 1 vote down

Its a label - the break statement supplies the label and this means it will be treated like a goto except that in Java a "break to label" will take you to the end of the block declared after the label.

link|flag
vote up 3 vote down

This is just a branching statement and goodUsage is simply a label. See here:

http://java.sun.com/docs/books/tutorial/java/nutsandbolts/branch.html

link|flag

Your Answer

Get an OpenID
or

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