g1oodboy 2016-11-12 11:10 采纳率: 87.5%
浏览 866
已采纳

我自己运行的assert代码结果为什么和帖子上的不一样???????

public class AssertText01 {

    public void assertMe(boolean foo) {  
        String str = null;  
        assert foo?true:false : str = "Error Occur!";  
        System.out.println("in true condition");  
    }  

    public static void main(String[] args) {  
        AssertText01 at = new AssertText01();  
        try {  
            at.assertMe(true);  
            at.assertMe(false);  
        } catch(AssertionError ae) {  
            System.out.println(ae.getMessage());  
        }  
    }  
}
结果是:
in true condition
in true condition
  • 写回答

1条回答 默认 最新

  • threenewbee 2016-11-12 13:28
    关注

    http://ideone.com/y4zdry
    在线验证结果

    你说的帖子是什么帖子?

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?