REPL 代表读取-评估-打印-循环。它保存了一些状态,JShell中的每个语句都有一个状态。这个状态决定了代码片段和变量的执行状态。它可以通过JShell 实例的eval()方法的结果来确定,该方法用于评估代码。
下面列出了七种不同的状态。
import java.util.List; import jdk.jshell.*; import jdk.jshell.Snippet.Status; public class JShellTest { public static void main(String args[]) { JShell shell = JShell.<strong>create()</strong>; <strong>List<SnippetEvent></strong> events = shell.<strong>eval</strong>("int a, b, sum; " + "a = 12; b = 11; sum = a + b; " + "System.out.println(sum);" ); for(<strong>SnippetEvent </strong>event : events) { Snippet snippet = <strong>event.snippet()</strong>; <strong>Snippet.Status</strong> snippetstatus = shell.<strong>status</strong>(snippet); if(snippetstatus == <strong>Status.VALID</strong>) { System.out.println("Successfully executed"); } } } }
<strong>Successfully executed Successfully executed Successfully executed </strong>
以上是在Java 9中,REPL的不同状态有哪些?的详细内容。更多信息请关注PHP中文网其他相关文章!