精华帖 (0) :: 良好帖 (0) :: 新手帖 (3) :: 隐藏帖 (2)
|
|
---|---|
作者 | 正文 |
发表时间:2011-11-22
jk19910410 写道 quanlei1507053 写道 就如jdbc的
public interface Connection { /** * Creates a <code>Statement</code> object for sending * SQL statements to the database. * SQL statements without parameters are normally * executed using <code>Statement</code> objects. If the same SQL statement * is executed many times, it may be more efficient to use a * <code>PreparedStatement</code> object. * <P> * Result sets created using the returned <code>Statement</code> * object will by default be type <code>TYPE_FORWARD_ONLY</code> * and have a concurrency level of <code>CONCUR_READ_ONLY</code>. * * @return a new default <code>Statement</code> object * @exception SQLException if a database access error occurs */ Statement createStatement() throws SQLException;//可以直接调用该接口方法,我知道里面做了许多处理,其实不是直接调用,调用了许多架包! 这个可不是直接调用该接口方法,而是DriverManger.getConnection()后使connection接口引用指向具体实现的connection实例,怎么是直接调用接口方法呢? 你没看清楚我说了吗,我说过不是直接调用接口!我说表意上!其实里面做了许多处理,调用了许多架包 |
|
返回顶楼 | |