当eclipse中的条件为真时,我需要在断言中将语句打印到控制台。 怎么样?
public static void main(String[] args) {
try {
assert(args[0].equals("x")): "kate";
} catch(Error e) {
System.out.print("ae ");
} finally {
try {
assert(args[0].equals("y")): "jane";
} catch(Exception e2) {
System.out.print("ae2 ");
}
}
}
答案 0 :(得分:5)
你需要:
现在,当你有类似的东西时:
assert(1==2) : "Error!!!";
您将在控制台中看到:
Exception in thread "main" java.lang.AssertionError: Error!!!
at .....