infame Goto,Java,自动代码

时间:2012-05-07 10:49:23

标签: java code-generation goto labels internal-class

想象一下,你有一个像这样的Java代码:

public class MyClass {
    public static Object doSmthg(Object A,Object B){
        if(smthg){ //if is given has an example, it can be any thing else
            doSmthg;
            GOTO label;
        }
        doSmthg;

        label;
        dosmthg1(modifying A and B);
        return an Object;
    }
}

我正在自动生成代码。当生成器在生成goto时到达(并且它不知道它在if块中),它不知道之后将会是什么。

我尝试使用标签,中断,继续,但这不起作用。

我尝试使用内部类(执行dosmthg1),但必须将A和B声明为final。问题是A和B必须修改。

如果没有其他解决方案,我将不得不在我的发电机中传播更多知识。但我更喜欢更简单的解决方案。

有什么想法吗?

提前致谢。

3 个答案:

答案 0 :(得分:1)

public static Object doSmthg(Object A,Object B){
    try {
    if(smthg){ //if is given has an example, it can be any thing else
        doSmthg;
        throw new GotoException(1);
    }
    doSmthg;

    } catch (GotoException e) {
         e.decrementLevel();
        if (e.getLevel() > 0)
            throw e;
    }
    dosmthg1(modifying A and B);
    return an Object;
}

有人可以做异常,但是为了定位正确的“标签”,要么必须检查异常消息,要么考虑嵌套级别。

我不知道我是否觉得这不是更丑陋。

答案 1 :(得分:1)

您可以在标签前面的块周围添加一个虚拟循环,并使用带标签的break作为goto的等价物:

public static Object doSmthg(Object A,Object B){
    label:
    do { // Labeled dummy loop
        if(smthg){ //if is given has an example, it can be any thing else
            doSmthg;
            break label; // This brings you to the point after the labeled loop
        }
        doSmthg;
    } while (false); // This is not really a loop: it goes through only once
    dosmthg1(modifying A and B);
    return an Object;
}

答案 2 :(得分:1)

如果你想跳过某些东西,比如:

A
if cond goto c;
B
c: C

你可以这样做

while (true) {
    A
    if cond break;
    B
}
C