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

前端 未结 28 1153
一个人的身影
一个人的身影 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 17:01

    Java-REPL by Albert Latacz works well.

    You can try it directly from your browser here: http://www.javarepl.com/term.html

    The source code is available here, and it has a decent Intelli-J plugin.

    https://github.com/albertlatacz/java-repl

提交回复
热议问题