zoukankan      html  css  js  c++  java
  • 创建classic 得到函数 调用函数

    Class manager = null;

            try
            {
                //1. 创建class
                manager = Class.forName(name);
            }
            catch (ClassNotFoundException e)
            {
             }

            Method oMethod = null;

            try
            {
                //2. 得到函数
                oMethod = manager.getMethod("getInstance", null);
            }
            catch (Exception e)
            {
             }

           IInitializable initializable = null;

            try
            {
                //3. 调用函数
                initializable = (IInitializable) oMethod.invoke(null, null);
            }
            catch (Exception e)
            {
            }

            try
            {
                initializable.init(xmlStatic);
            }
            catch (Throwable e)
            {
             if (blockingError)
                {
                    FatalHandler.manage(this, CoreMessages.format("BSSE0004", name),e);
                }
             else
                {
                 logger.warn(CoreMessages.format("BSSE0004", name));
                 logger.error(e);
                }
                return;
            }

  • 相关阅读:
    洛谷P1261 服务器储存信息问题
    洛谷P2110 欢总喊楼记
    洛谷P2482 [SDOI2010]猪国杀
    洛谷P2756 飞行员配对方案问题
    洛谷P2763 试题库问题
    洛谷P2774 方格取数问题
    Huffman编码
    SA后缀数组
    KMP
    LCA
  • 原文地址:https://www.cnblogs.com/kevinge/p/1549632.html
Copyright © 2011-2022 走看看