软件包  jdk.nashorn.api.tree

Interface ContinueTree

  • All Superinterfaces:
    GotoTreeStatementTree


    public interface ContinueTree
    extends GotoTree
    “continue”语句的树结点。 例如:
      continue;
       continue label ; 
    从以下版本开始:
    9
    • 方法详细信息

      • getLabel

        String getLabel​()
        与此continue语句关联的标签。 如果没有与此continue语句关联的标签,则为null。
        Specified by:
        getLabel在接口 GotoTree
        结果
        label associated with this continue statement.