jshell
因為真的很好玩就開一篇來介紹 jshell 這個東西。
它位於"\bin"路徑之下,例如"C:\Program Files\Java\jdk-16.0.1\bin"資料夾當中,可以找到jshell.exe。
jshell能夠做到什麼?
這是一個 REPL(Read-Eval-Print Loop) 的交互式實時命令工具。
大概像是這樣,其實滿酷的。
官方文檔說 jshell 的功能是這樣。
JShell helps you try out code and easily explore options as you develop your program. You can test individual statements, try out different variations of a method, and experiment with unfamiliar APIs within the JShell session. JShell doesn’t replace an IDE. As you develop your program, paste code into JShell to try it out, and then paste working code from JShell into your program editor or IDE.
基本上就是可以把 code 在 JShell 中進行測試,測完再放入自己的程式當中。
另外可以透過 /help 來查詢指令。
總結
好啦,感覺我也不會用到這個功能,但是挖文檔挖到覺得很好玩,所以分享一下。
本部落格所有文章除特別聲明外,均採用 CC BY-NC-SA 4.0 許可協議。轉載請註明來自 Afan's blog!
評論