摘要: package com.sunzn.app.util;import android.util.Log;public class Logger { public static int DEBUG_LEVEL = 6; private static final int VERBOSE = 5; private static final int DEBUG = 4; private static final int INFO = 3; private static final int WARN = 2; private static final int ERROR... 阅读全文
posted @ 2013-07-13 20:26 sunzn 阅读(1316) 评论(0) 推荐(0) 编辑
摘要: 在一些应用中,无法事先知道使用者将加载什么类,而必须让使用者指定类名称以加载类,可以使用 Class 的静态 forName() 方法实现动态加载类。下面的范例让你可以指定类名称来获得类的相关信息。package cn.sunzn.demo;public class ClassDemo { public static void main(String[] args) { try { Class c = Class.forName(args[0]); System.out.println("类名称:" + c.getName());... 阅读全文
posted @ 2013-07-13 11:59 sunzn 阅读(48381) 评论(1) 推荐(1) 编辑