如何将 Java 7 与 Eclipse Indigo 3.7.1 一起使用

发布于 2024-12-06 12:35:50 字数 822 浏览 3 评论 0原文

据我了解 Eclipse Indigo 3.7.1 现在应该有支持Java 7。

我下载了Eclipse 3.7.1。和 JDK 1.7.0,并在 Eclipse 的设置中添加了 JRE7。然后我使用 JRE7 创建了一个新项目,并编写了一个简短的 Java 7 程序:

public class Test7 {

    public static void main(String[] args) {
        String k = "Hello";
        switch(k) {
        case "World": System.out.println("World Hello");
            break;
        case "Hello": System.out.println("Hello World");
            break;
        }
    }
}

Start a Java 7 project

但出现错误当我尝试在 Switch 语句中使用字符串时。内容辅助中的错误如下所示:

内容辅助错误

我是否做错了什么或者 Eclipse 3.7.1 没有支持 Java 7 了吗? Eclipse 中是否有需要更改的设置?

From what I understand Eclipse Indigo 3.7.1 should now have support for Java 7.

I downloaded Eclipse 3.7.1. and JDK 1.7.0 and added JRE7 in the settings in Eclipse. Then I created a new project using JRE7 and wrote a short Java 7 program:

public class Test7 {

    public static void main(String[] args) {
        String k = "Hello";
        switch(k) {
        case "World": System.out.println("World Hello");
            break;
        case "Hello": System.out.println("Hello World");
            break;
        }
    }
}

Start a Java 7 project

But I get an error when I try to use a String in a Switch statement. The error in Content assist looks like this:

Content assist error

Have I done anything wrong or doesn't Eclipse 3.7.1 have support for Java 7 yet? Is there any settings in Eclipse I need to change?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

总攻大人 2024-12-13 12:35:50

您还必须在“首选项 | Java | 编译器 | JDK 合规性”下更改编译器合规性设置。为项目设置 JDK 仅设置要编译的库以及用于运行项目的 JDK。

You also have to change the compiler compliance settings under "Preferences | Java | Compiler | JDK Compliance." Setting the JDK for the project only sets the libraries to compile against and the JDK used to run the project.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文