Java 9에 도입된 JShell 도구는 REPL(Read-Evaluate-Print-Loop)이라고도 알려져 있으며, 이를 통해 Java 코드를 실행하고 결과를 즉시 얻을 수 있습니다. 새 프로젝트를 생성하거나 컴파일하거나 빌드할 필요 없이 표현식이나 짧은 알고리즘을 빠르게 평가할 수 있습니다. JShell을 사용하면 expressions, use imports, classes, methods 및 >variables를 정의할 수 있습니다.
“/types” 명령을 사용하면 현재 JShell 세션 에 정의된 모든 클래스 , 인터페이스 및 열거 를 나열할 수 있습니다.
아래 코드 조각에서는 아래 코드의 <strong>C:\Users\User> jshell
| Welcome to JShell -- Version 9.0.4
| For an introduction type: /help intro
jshell> class Test {
...> public static void main(String args[]) {
...> System.out.println("TutorialsPoint");
...> }
...> }
| created class Test
jshell> interface TestInterface {
...> public void sum();
...> }
| created interface TestInterface
jshell> enum EnumTest {
...> TUTORIALSPOINT,
...> TUTORIX
...> }
| created enum EnumTest</strong>
" 클래스, "
TestInterface" 인터페이스 및 열거형 "
EnumTest"을 만들었습니다. 스니펫에서 "/types" 명령을 사용하여 모든 클래스, 인터페이스 및 열거형
<strong>jshell> /types | class Test | interface TestInterface | enum EnumTest </strong> <strong>jshell></strong>
위 내용은 Java 9의 JShell에 있는 모든 클래스, 인터페이스 및 열거형을 어떻게 나열합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!