博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Class.forname的含义,以及与newInstance函数调用的关系和区别
阅读量:4886 次
发布时间:2019-06-11

本文共 2820 字,大约阅读时间需要 9 分钟。

Class.forName(xxx.xx.xx) 返回的是一个类, .newInstance() 后才创建一个对象 Class.forName(xxx.xx.xx);的作用是要求JVM查找并加载指定的类,也就是说JVM会执行该类的静态代码段 


Class aClass = Class.forName(xxx.xx.xx); 
Object anInstance = aClass.newInstance(); 


Class.forName("").newInstance()返回的是object 
but there is some limit for this method to create instance 
that is your class constructor should no contain parameters, and you should cast the instance manually. 

Class Driver{ 
protected static Driver current; 
public static Driver getDriver(){ 
return current; 



Class MyDriver extends Driver{ 
static{ 
Driver.current=new MyDriver(); 

MyDriver(){} 


用时: 
Class.forName("MyDriver"); 
Driver d=Driver.getDriver(); 

有的jdbc连接数据库的写法里是Class.forName(xxx.xx.xx);而有一些:Class.forName(xxx.xx.xx).newInstance(),为什么会有这两种写法呢? 

Class.forName(xxx.xx.xx) 返回的是一个类, 
.newInstance() 后才创建一个对象 

Class.forName(xxx.xx.xx);的作用是要求JVM查找并加载指定的类,也就是说JVM会执行该类的静态代码段 

在JDBC规范中明确要求这个Driver类必须向DriverManager注册自己,即任何一个JDBC Driver的Driver类的代码都必须类似如下: 
public class MyJDBCDriver implements Driver { 
static { 
DriverManager.registerDriver(new MyJDBCDriver()); 



所以我们在使用JDBC时只需要Class.forName(XXX.XXX);就可以了 

we just want to load the driver to jvm only, but not need to user the instance of driver, so call Class.forName(xxx.xx.xx) is enough, if you call Class.forName(xxx.xx.xx).newInstance(), the result will same as calling Class.forName(xxx.xx.xx), because Class.forName(xxx.xx.xx).newInstance() will load driver first, and then create instance, but the instacne you will never use in usual, so you need not to create it. 

在JDBC驱动中,有一块静态代码,也叫静态初始化块,它执行的时间是当class调入到内存中就执行(你可以想像成,当类调用到内存后就执行一个方法)。所以很多人把jdbc driver调入到内存中,再实例化对象是没有意义的。

 

针对这个帖子,看看来自mysql官方jdbc驱动中自带的代码例子吧,看看代码注释中说的,为什么还要调一下newInstance:  

 

String connURL 
=
 
"
jdbc:mysql://localhost/mysql?user=root&password=athena9126
"
;
        Statement stmt 
=
 
null
;
        Connection conn 
=
 
null
;
        
try
 {
            
//
 init database stuffs
            
//
 The newInstance() call is a work around for some
            
//
 broken Java implementations
            Class.forName(
"
com.mysql.jdbc.Driver
"
).newInstance();
            conn 
=
 DriverManager.getConnection(connURL);
            stmt 
=
 conn.createStatement();
            String sql 
=
 
"
insert into help_category values(
"
 
+
 form.getHelp_category_id() 
+
 
"
,'
"
 
+
 form.getName() 
+
 
"
',
"
 
+
 form.getParent_category_id() 
+
 
"
,'
"
 
+
 form.getUrl() 
+
 
"
')
"
;
            stmt.executeUpdate(sql);
        } 
catch
 (SQLException e1) {
            log.error(
"
CreateHelpCategory SQLException: 
"
, e1);
            
return
 
"
error.system.sqlexception
"
;
        } 
catch
 (Exception ex) {
            log.error(
"
CreateHelpCategory unknown exception: 
"
, ex);
            
return
 
"
error.system.unknown
"
;
        } 
finally
 {
            
try
 {
                
if
 (stmt 
!=
 
null
) {
                    stmt.close();
                    stmt 
=
 
null
;
                }
                
if
 (conn 
!=
 
null
) {
                    conn.close();
                    conn 
=
 
null
;
                }
            } 
catch
 (Exception finalex) {
                log.error(
"
Finalization in CreateHelpCategory exception: 
"
, finalex);
            }
        }

 

 

转载于:https://www.cnblogs.com/super119/archive/2011/01/11/1933304.html

你可能感兴趣的文章
Pthon3各平台的安装
查看>>
python编程快速上手之第11章实践项目参考答案(11.11.3)
查看>>
JS 之CLASS类应用
查看>>
一个tga工具
查看>>
64bit CPU 知识 (IA32,IA64,EM64T,AMD64)
查看>>
结构体 枚举
查看>>
srtlen实现以及与sizeof的比较
查看>>
linux+win7双系统重装win7修复grub的办法
查看>>
让应用在横屏模式下启动
查看>>
日常练习 1.0
查看>>
php集成环境
查看>>
Ubuntu下的负载均衡Web集群配置
查看>>
mvc的个别对输入数据的验证
查看>>
autoit学习安装说明及例子
查看>>
jQuery控制form表单元素聚焦
查看>>
wpf+.net 4.5 surface2.0 = 异步多点触控 时间轴 part1
查看>>
05.SSL或TTL应用编程
查看>>
PostgreSQL自学笔记:5 数据类型和运算符
查看>>
Android学习_7/25
查看>>
3400: [Usaco2009 Mar]Cow Frisbee Team 奶牛沙盘队
查看>>