摘要:
//第一种 Threadpublic static void main(String[] args) { Thread thread = new Thread() { @Override public void run() { log.info("具体业务逻辑"); } }; thread.setN 阅读全文
摘要:
public static void main(String[] args) throws Exception { //第一种 //这里需要做异常处理,或的加载类的类对象类。 Class<?> forName = Class.forName("com.xb.test.Student"); //通过类 阅读全文