3

一段时间以来,我第一次在 Eclipse 之外进行 Java 编程(对于 coursera 算法课程),并且我正在尝试使用 SBT 进行构建。SBT 工作正常(虽然启动缓慢),但我不知道如何启用断言。以下任何一项似乎都不起作用。

javaOptions += "-ea" // doesn't work
javaOptions in run += "-ea" // doesn't work either

构建.sbt

// disable using the Scala version in output paths and artifacts
crossPaths := false

// Enable assertions?
javaOptions += "-ea" // doesn't work
//javaOptions in run += "-ea" // doesn't work either

organization := "me"

name := "me"

version := "1.0-SNAPSHOT"

// Use jars from parent dir. Normally jars are stuck in lib/
unmanagedJars in Compile += file("../stdlib.jar")

unmanagedJars in Compile += file("../algs4.jar")

快速查找.java

import java.util.Arrays; // I hate java so much

public class QuickFind {
    public int[] id;

    public QuickFind (int N) {
        id = new int[N];
        int i;
        for (i = 0; i < N; i++) {
            id[i] = i;
        }
    }

    public boolean connected (int p, int q) {
        return id[p] == id[q];
    }

    public void union (int p, int q) {
        // Walk through array and make everything with id = p || q
        // equal to id p
        int pid = id[p];
        int qid = id[q];

        int i;
        for (i = 0; i < id.length; i++) {
            if (id[i] == qid) id[i] = pid;
        }
    }

    public static void main (String[] args) {
        StdOut.println("QuickFind"); // from stdlib.jar
        QuickFind uf = new QuickFind(4);
        uf.union(0,1);

        // Assert unions work
        StdOut.println("array=" + Arrays.toString(uf.id));
        assert uf.connected(0,1);
        assert uf.connected(0,2); // <---------------------this should fail
    }
}
4

3 回答 3

3

这个链接解释了它。简短版本在您的 build.sbt 中使用以下内容:

// Enable assertions
fork in run := true

javaOptions in run += "-ea"
于 2013-02-06T02:03:56.307 回答
2

对于那些可能难以让断言在 SBT 项目下工作的人,这可能对您有所帮助。

我尝试了这两种方法fork := true javaOptions += "-ea",甚至sbt "show run-options"证明该标志位于 javaOptions 中。出于某种奇迹的原因,运行时断言仍然不起作用。

我不确定这是 SBT 错误还是什么。但直到我使用 export _JAVA_OPTIONS="-ea"sbt 才运行 finally log Picked up _JAVA_OPTIONS: -ea

我希望这会有所帮助,因为我确实花了 3 个小时在这上面。

于 2017-08-23T14:13:21.057 回答
0

我想知道为什么您需要在 build中启用断言。

-ea选项在您实际运行程序时启用断言检查。这是一种java选择,而不是一种javac选择。您不需要(并且 AFAIK 不能)在构建时启用/禁用代码中的断言。

于 2013-02-06T03:41:27.137 回答