论坛首页 招聘求职论坛

今天面试遇到的面试题

浏览 10006 次
精华帖 (0) :: 良好帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2009-04-21   最后修改:2009-04-21
mysql方面的
第一题:一张表,里面有ID自增主键,当insert了17条记录之后,删除了第15,16,17条记录,再把Mysql重启,再insert一条记录,这条记录的ID是18还是15

第二题:还是MYSQL的,一张表有还是有ID自增主键,用JDBC insert一条语句之内,怎么在JAVA程序里面获得这条记录的ID.

   发表时间:2009-04-21  
大家都看一下吧,这个两个问题怎么解决啊。。
0 请登录后投票
   发表时间:2009-04-21  
1. 18
2. 用JDBC得到insert时生成的key, 然后通过key去查询这个值
0 请登录后投票
   发表时间:2009-04-22  
第一个是18
第二个看看我这篇博文http://webwork.iteye.com/blog/361348
0 请登录后投票
   发表时间:2009-04-22  
第3题呢?切图那个?这面试还是比较有意思的!
0 请登录后投票
   发表时间:2009-04-22  
tianzaghi 写道
第3题呢?切图那个?这面试还是比较有意思的!

晕了,你看到了,你还不帮下我。。。。
0 请登录后投票
   发表时间:2009-04-22   最后修改:2009-04-22
langhua9527 写道
tianzaghi 写道
第3题呢?切图那个?这面试还是比较有意思的!

晕了,你看到了,你还不帮下我。。。。

getSubimage

public BufferedImage getSubimage(int x,
                                 int y,
                                 int w,
                                 int h)

    Returns a subimage defined by a specified rectangular region. The returned BufferedImage shares the same data array as the original image.

    Parameters:
        w - the width of the specified rectangular region
        h - the height of the specified rectangular region 
    Returns:
        a BufferedImage that is the subimage of this BufferedImage. 
    Throws:
        RasterFormatException - if the specified area is not contained within this BufferedImage.


http://java.sun.com/j2se/1.4.2/docs/api/java/awt/image/BufferedImage.html#getSubimage(int,%20int,%20int,%20int)
0 请登录后投票
   发表时间:2009-04-22  
第一个是15
0 请登录后投票
   发表时间:2009-04-22  
抛出异常的爱 写道
langhua9527 写道
tianzaghi 写道
第3题呢?切图那个?这面试还是比较有意思的!

晕了,你看到了,你还不帮下我。。。。

getSubimage

public BufferedImage getSubimage(int x,
                                 int y,
                                 int w,
                                 int h)

    Returns a subimage defined by a specified rectangular region. The returned BufferedImage shares the same data array as the original image.

    Parameters:
        w - the width of the specified rectangular region
        h - the height of the specified rectangular region 
    Returns:
        a BufferedImage that is the subimage of this BufferedImage. 
    Throws:
        RasterFormatException - if the specified area is not contained within this BufferedImage.


http://java.sun.com/j2se/1.4.2/docs/api/java/awt/image/BufferedImage.html#getSubimage(int,%20int,%20int,%20int)

你是这样解决的
http://langhua9527.iteye.com/blog/372463
我昨天做了一个,面试官说不行,因为效率太低,要切个几分钟,今天叫我重做
我又做了一个,用了ImageReader,只要几秒钟就切完了

用public BufferedImage getSubimage(...)这个效率是不是很低啊?
1 请登录后投票
   发表时间:2009-05-21  
假定NAME是唯一的。

connection.setAutoCommit(false);
Statement stat = connection.getStatement();
stat.executeUpdate("insert into test (name,password) values('123','321')");
ResultSet rs = stat.executeQuery("select id from test where name='123'");
rs.next();
System.out.println(rs.getInt('id'));
connection.commit();
0 请登录后投票
论坛首页 招聘求职版

跳转论坛:
Global site tag (gtag.js) - Google Analytics