Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

จะดีบัก JShell ใน Java 9 ได้อย่างไร


JShell เป็นเครื่องมือ REPL ที่อนุญาตให้เรียกใช้ตัวอย่างโค้ดโดยไม่ต้องวางลงในคลาส เครื่องมือนี้เป็นวิธีประเมินการประกาศ , คำชี้แจง และ นิพจน์ ใน Java และไม่จำเป็นต้องสร้าง main() วิธีทดสอบโค้ดบางส่วน

คำสั่ง "/debug " สามารถใช้เพื่อแสดงข้อมูลการดีบัก สำหรับการใช้งานเครื่องมือ JShell เมื่อเราพิมพ์ "/debug" คำสั่ง โหมดดีบักเปิดอยู่ . หลังจากเปิดใช้งานโหมดดีบักแล้วพิมพ์บางอย่าง เช่น การเติมธรรมดาหรือสตริงธรรมดา จากนั้นจะพิมพ์ออกมาดังรูปด้านล่าง

ตัวอย่าง-1

jshell> /debug
| Debugging on

jshell> 5+3
Compiling: 5+3
Kind: EXPRESSION_STATEMENT -- 5 + 3;
compileAndLoad [Unit($1)]
++setCompilationInfo() Snippet:VariableKey($1)#11-5+3
package REPL;
import java.io.*;import java.math.*;import java.net.*;import java.nio.file.*;import java.util.*;
import java.util.concurrent.*;import java.util.function.*;import java.util.prefs.*;
import java.util.regex.*;import java.util.stream.*;class $JShell
$11 {
public static
int $1;
public static Object do_it$() throws Throwable {
return $1 = 5+3;
}
}

-- diags: []
setStatus() Snippet:VariableKey($1)#11-5+3 - status: VALID
compileAndLoad ins = [Unit($1)] -- legit = [Unit($1)]
Compiler generating class REPL.$JShell$11
compileAndLoad [Unit($1)] -- deps: [] success: true
recordCompilation: Snippet:VariableKey($1)#11-5+3 -- status VALID, unresolved []

$1 ==> 8


ตัวอย่าง-2

jshell> /debug
| Debugging on

jshell> String s = "Adithya"
Compiling: String s = "Adithya";
Kind: VARIABLE -- String s = "Adithya"
compileAndLoad [Unit(s)]
++setCompilationInfo() Snippet:VariableKey(s)#12-String s = "Adithya";
package REPL;
import java.io.*;import java.math.*;import java.net.*;import java.nio.file.*;import java.util.*;
import java.util.concurrent.*;import java.util.function.*;import java.util.prefs.*;
import java.util.regex.*;import java.util.stream.*;import static REPL.$JShell$11.$1;
class $JShell$12 {
public static String s;
public static Object do_it$() throws Throwable {
String s_ =
"Adithya";
return s = s_;
}
}

-- diags: []
setStatus() Snippet:VariableKey(s)#12-String s = "Adithya"; - status: VALID
compileAndLoad ins = [Unit(s)] -- legit = [Unit(s)]
Compiler generating class REPL.$JShell$12
compileAndLoad [Unit(s)] -- deps: [] success: true
recordCompilation: Snippet:VariableKey(s)#12-String s = "Adithya"; -- status VALID, unresolved []
s ==> "Adithya"


ถ้าเราต้องการ "ปิด" โหมดแก้ไขข้อบกพร่อง จากนั้นพิมพ์ "/debug" อีกครั้ง คำสั่งสำหรับเซสชันเดียวกัน

jshell> /debug
| Debugging off