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

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

    DrJava is an educational IDE that includes an REPL pane.

    There is an Eclipse plugin as well, but it hasn't worked for me. I think it just hasn't been updated in a while. So what I generally do is keep a DrJava window open for the "what happens if I do this" questions.

    EclipseShell might be good too, but I haven't used it yet.

提交回复
热议问题