Is there something like python's interactive REPL mode, but for Java?

前端 未结 28 1256
一个人的身影
一个人的身影 2020-11-29 16:38

Is there something like python\'s interactive REPL mode, but for Java? So that I can, for example, type InetAddress.getAllByName( localHostName ) in a window, a

28条回答
  •  夕颜
    夕颜 (楼主)
    2020-11-29 16:57

    edit Since Java 9 there's JShell

    Original answer follows

    You can also use Groovy Console. It is an interactive console where you can do what you want. Since Groovy also includes classes from the core java platform, you'll be able to use those classes as well.

    It looks like this:

    Screenshot of Groovy

提交回复
热议问题