以下の内容はhttps://yoshiori.hatenablog.com/entry/20090605/1244178196より取得しました。


と言う事は

    public static void main(String[] args) {
    	System.out.println(Boolean.valueOf("true"));
    	System.out.println(Boolean.getBoolean("true"));

    	System.setProperty("true", "true");
    	System.out.println(Boolean.valueOf("true"));
    	System.out.println(Boolean.getBoolean("true"));

    	System.setProperty("true", "false");
    	System.out.println(Boolean.valueOf("true"));
    	System.out.println(Boolean.getBoolean("true"));
    }

の結果は

true
false
true
true
true
false

になるのねん♪




以上の内容はhttps://yoshiori.hatenablog.com/entry/20090605/1244178196より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14