7

假设我有一些代码:

public int doSomething(int x)
{
    otherMethod(x);
    System.out.println("otherMethod is complete.");
    return 0;
}

public void otherMethod(int y)
{
    //method body
}

既然otherMethod的返回类型是void,那doSomething方法怎么知道什么时候otherMethod完成了,所以可以去下一个like,打印“otherMethod完成了”?

编辑:添加return 0;到 doSomething 方法,以便编译示例代码。

4

2 回答 2

14

解析器知道执行结束在哪里,甚至添加一个返回,例如:

 public static void main(String args[])  {

}

编译为:

 public static main([Ljava/lang/String;)V
   L0
    LINENUMBER 34 L0
    RETURN <------ SEE?
   L1
    LOCALVARIABLE args [Ljava/lang/String; L0 L1 0
    MAXSTACK = 0
    MAXLOCALS = 1
}

这同样适用于您的代码(尽管我在 return 0 中添加了因为您的代码无法编译):

 public int doSomething(int x)
    {
        otherMethod(x);
        System.out.println("otherMethod is complete.");
        return 0;
    }

    public void otherMethod(int y)
    {
        //method body
    }

编译代码:

public doSomething(I)I
   L0
    LINENUMBER 38 L0
    ALOAD 0
    ILOAD 1
    INVOKEVIRTUAL TestRunner.otherMethod (I)V
   L1
    LINENUMBER 39 L1
    GETSTATIC java/lang/System.out : Ljava/io/PrintStream;
    LDC "otherMethod is complete."
    INVOKEVIRTUAL java/io/PrintStream.println (Ljava/lang/String;)V
   L2
    LINENUMBER 40 L2
    ICONST_0
    IRETURN
   L3
    LOCALVARIABLE this LTestRunner; L0 L3 0
    LOCALVARIABLE x I L0 L3 1
    MAXSTACK = 2
    MAXLOCALS = 2

  // access flags 0x1
  public otherMethod(I)V
   L0
    LINENUMBER 46 L0
    RETURN <-- return inserted!
   L1
    LOCALVARIABLE this LTestRunner; L0 L1 0
    LOCALVARIABLE y I L0 L1 1
    MAXSTACK = 0
    MAXLOCALS = 2
}
于 2013-03-22T01:18:55.057 回答
1

因为结束括号。一旦线程到达方法的末尾,它将返回。此外,程序员可以通过编写来指定 void 方法何时结束 return;

编辑:我把问题搞混了。线程一次执行一个方法,一次执行一条语句,因此一旦线程完成一个方法,它将转到调用方法的下一行。

于 2013-03-22T01:15:56.367 回答