⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 e105. handling an assertion error.txt

📁 这里面包含了一百多个JAVA源文件
💻 TXT
字号:
When an assertion fails, AssertionError is thrown. Handling an assertion failure is rarely done. A situation in which you might handle an assertion failure is in the top-level loop of a high-availability server. 
    try {
        assert args.length > 0;
    } catch (AssertionError e) {
        // In this case, the message is null
        String message = e.getMessage();
    }
    
    try {
        assert args.length > 0 : "my message";
    } catch (AssertionError e) {
        // In this case, the message is a string
        String message = e.getMessage();
    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -