logger.log(「日誌訊息」);
定義ilog介面:
public inte***ce ilog
讀取c盤下c:\log.xml配置檔案:
可以通過asm.gettype(「itcast.sqllogger」)可以根據類全名獲得類的type,速度更快。
每一項logger為乙個日誌外掛程式,type為外掛程式類的全名,path為外掛程式類所在的dll的路徑。
logger.log方法依次載入c:\log.xml中定義的外掛程式類,將日誌資訊記錄到相應的儲存中去。
除錯**:
logger.log("準備連線資料庫");
sqlconnection con......
trycath()
java反射練習
public class mytest public mytest int k,string s,boolean b,double d private static final string str public int a private double c private boolean s pr...
Python之反射練習
什麼是反射?可以用字串的方式去訪問物件的屬性 class test name sss deffun self return helloword t test print hasattr t,name hasattr obj,name 檢視類裡面有沒有name屬性 print hasattr t,fu...
GO語言練習 反射
列舉幾個反射的例子 1 簡單型別反射,2 複雜型別反射,3 對反射回來的資料的可修改屬性 1 簡單型別反射 1.1 package main import fmt reflect func main 1.2 執行結果 go run reflect.go type float64 kind is fl...