摘要:
1、JavaScript:写入 HTML 输出 1 document.write("<h1>This is a heading</h1>"); 2 document.write("<p>This is a paragraph</p>"); 2、JavaScript:对事件作出反应 1 <button 阅读全文
摘要:
三种获取字节码对象的方法,获取的都是同一个,因为保存的对象只有一个 Student s = new Student(); Class c1 = Student.class; Class c2 =s.getClass(); Class c3 = Class.forName("com.test.refl 阅读全文