java中DriverManager调用getConnection()方法后为什么能赋给一个Connection对象?
DriverManager类和Connection类怎么建立联系,使之DriverManager类的对象能赋给Connection类的对象呢?我这个问题可能有点傻,但是很...
DriverManager类和Connection类怎么建立 联系,使之DriverManager类的对象能赋给Connection类的对象呢?
我这个问题可能有点傻,但是很重要,麻烦网友解答下。换句话说就是有一个方方,返回的是一个整型数据,某个对象调用这个方法可以赋给一个整型变量,这是通过舍呢么实现的,能说点内部机理最好 展开
我这个问题可能有点傻,但是很重要,麻烦网友解答下。换句话说就是有一个方方,返回的是一个整型数据,某个对象调用这个方法可以赋给一个整型变量,这是通过舍呢么实现的,能说点内部机理最好 展开
3个回答
展开全部
本来就是返回connection
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
以下是DriverManager类里的getConnection的源码,不知你能读懂?
public static Connection getConnection(String url,
String user, String password) throws SQLException {
java.util.Properties info = new java.util.Properties();
// Gets the classloader of the code that called this method, may
// be null.
ClassLoader callerCL = DriverManager.getCallerClassLoader();
if (user != null) {
info.put("user", user);
}
if (password != null) {
info.put("password", password);
}
return (getConnection(url, info, callerCL));
}
public static Connection getConnection(String url,
String user, String password) throws SQLException {
java.util.Properties info = new java.util.Properties();
// Gets the classloader of the code that called this method, may
// be null.
ClassLoader callerCL = DriverManager.getCallerClassLoader();
if (user != null) {
info.put("user", user);
}
if (password != null) {
info.put("password", password);
}
return (getConnection(url, info, callerCL));
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-07-28
展开全部
这个和声明变量并赋值一样的啊,这你都不懂吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询