求救~幫忙看一段程式碼是做什麼用的~

woodless發表於2004-04-20
最近在研究jive,在ConnectionManager類中有這樣一段程式碼沒有搞清楚是做什麼用的

    static {
        Runtime runtime = Runtime.getRuntime();
        Class c = runtime.getClass();
        try {
            Method m = c.getMethod("addShutdownHook", new Class[] { Thread.class } );
            m.invoke(runtime, new Object[] { new ShutdownThread() });
        }
        catch (NoSuchMethodException nsme) {
		//do something...
        }
        catch (Exception e) {
            e.printStackTrace();
        }
    }

請各位大蝦指點,謝了~

相關文章