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

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

    Scala also offers an interactive console. I was able to use it to get a result for the expression in your question by fully qualifying InetAddress, as in:

    java.net.InetAddress.getAllByName("localhost")
    

提交回复
热议问题