由于 Java 9 引入了 JShell 的概念,它使我们能够在不创建类和方法的情况下编写代码,是否可以在 eclipse 中使用 Java 9 的这个特性?
4 回答
您可以使用TM 终端在 Eclipse 中运行 JShell:
- 如有必要,安装TM Terminal(仅包含在某些 Eclipse 包中)
- 在 Eclipse 中打开“终端”视图:窗口 > 显示视图 > 其他...:终端 > 终端
- 启动一个新的本地终端
- 运行 JShell,例如在 Windows 类型上,
"C:\Program Files\Java\jdk-9\bin\jshell" -v
然后Enter
或者,您可以使用Scrapbook Page,它是 Eclipse Java IDE 的内置功能,也适用于较旧的 Java 版本。您将完成代码,并且可以使用项目的 Java 类:
如其他答案中所述,有多种方法可以做到这一点。但我想告诉你一个插件,它提供的功能比仅仅从 Eclipse 启动一个普通的 JShell 还要多。
检查这个 Eclipse 插件QuickShell
该插件将在 Eclipse 终端中启动 JShell。像这样:
您还可以选择现有的 java 源代码并将其作为 JShell 脚本运行。例如 :
.jsh 和 .jpage 文件可以直接从 Eclipse 运行。
PS:我是这个插件的作者。
如果您喜欢使用 JShell(来自 Eclipse 或终端)来尝试代码,一个非常好的选择是使用 Maven JShell 插件并从相应的(虚拟)项目中运行 mvn(在 Eclipse 中:右键单击项目和运行方式-> Maven 构建)。
在这种情况下,JShell 知道项目依赖项中指定的所有库。
我在这里使用这个:http ://www.finmath.net/finmath-experiments/montecarlo-blackscholes/
使用一些库(JavaFX、Apache commons、finmath lib)的小 pom.xml 可能如下所示:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>net.finmath</groupId>
<artifactId>finmath-experiments</artifactId>
<version>0.1.1-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<defaultGoal>clean install jshell:run</defaultGoal>
<finalName>${project.artifactId}-${project.version}</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>11</release>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.github.johnpoth</groupId>
<artifactId>jshell-maven-plugin</artifactId>
<version>1.2</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<!-- Java FX -->
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx-base -->
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-base</artifactId>
<version>11</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>11</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-swing</artifactId>
<version>11</version>
</dependency>
<!-- finmath-lib -->
<dependency>
<groupId>net.finmath</groupId>
<artifactId>finmath-lib</artifactId>
<version>5.0.2</version>
</dependency>
<dependency>
<groupId>net.finmath</groupId>
<artifactId>finmath-lib-plot-extensions</artifactId>
<version>0.3.9</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>3.6.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.10</version>
</dependency>
</dependencies>
</project>
注意:我个人更喜欢从 macOS 的终端运行它,因为 JShell 在那里支持“TAB-auto-completion”,而从 Eclipse 运行时似乎缺少该功能。