Java 9 引進了 Java 程式語言的 JShell 工具。該工具允許我們評估程式碼片段,例如聲明、語句和表達式。我們將獲取有關Java版本和供應商的詳細信息,並獲取有關作業系統版本和名稱的詳細資訊使用靜態方法:System 類別的getProperty()。
在下面的程式碼片段中,我們可以取得詳細資訊JShell 控制台中的 Java 版本、Java 供應商和作業系統版本以及作業系統名稱。
<strong>C:\Users\User>jshell | Welcome to JShell -- Version 9.0.4 | For an introduction type: /help intro jshell> System.out.println(System.getProperty("java.version")); 9.0.4 jshell> System.out.println(System.getProperty("java.vendor")); Oracle Corporation jshell> System.out.println(System.getProperty("os.version")); 6.3 jshell> System.out.println(System.getProperty("os.name")); Windows 8.1 jshell></strong>
以上是在Java 9中如何在JShell中取得Java和作業系統版本以及供應商詳細資訊?的詳細內容。更多資訊請關注PHP中文網其他相關文章!