Warning: include_once(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in /home/users/2/moriya-h5/web/confrage/java/sjc-p/exception/exception.html on line 2

Warning: include_once(http://www.confrage.com/bin/header.php): failed to open stream: no suitable wrapper could be found in /home/users/2/moriya-h5/web/confrage/java/sjc-p/exception/exception.html on line 2

Warning: include_once(): Failed opening 'http://www.confrage.com/bin/header.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/java/sjc-p/exception/exception.html on line 2
例外 | Java | 株式会社CONFRAGE
Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/java/sjc-p/exception/exception.html on line 17

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/java/sjc-p/exception/exception.html on line 17
例外実装メソッド
例外はあまり出題されないようですが、基礎として知っておく必要があります。
以下の例を見てください。

class Test{
    public static void main(String[] args){
        try{
            String a=null;    
            System.out.println(a.length());
        }catch(Exception e){
            System.out.println("catch");
            return;
        }finally{
            System.out.println("finally");
        }
    }
}
上記サンプルは普通のtry~catch文です。
tryの中でnullであるaに対してa.length()としているため例外が発生します。
このように実行時に起きる例外をランタイムエクセプション(検査例外)と言います。

例外はcatch文でキャッチされます。その後にreturnとあるので終了するように思えますが、実は必ずfinally文を通ります。
ここが良く出題されます。try~catch文ではどんなことがあっても最後にfinallyがあればfinally文を通ります。そのあとにreturnとなります。

Back to top

Information

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/java/sjc-p/exception/exception.html on line 76

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/java/sjc-p/exception/exception.html on line 76

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/seo.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/java/sjc-p/exception/exception.html on line 85

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/seo.php' for inclusion (include_path='.:/usr/local/php/5.6/lib/php') in /home/users/2/moriya-h5/web/confrage/java/sjc-p/exception/exception.html on line 85