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

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

    You can use Eclipse Scrapbook pages.

    In Eclipse create a Scrapbook page. In your project, New->Other->Scrapbook page.

    In the file, enter some text, select it and hit ctrl-U, and there you go.

    To manage your imports, right click in the page and select Set Imports, where you can choose to import a package or a single class. This is persistent, and is saved with the page.

提交回复
热议问题