zoukankan      html  css  js  c++  java
  • JAVA程序员面试笔试题(一)

    1.假设有一个mysql实例,相关信息如下:
    schema名为test
    用户名密码为6个b
    端口为:3306
    主机IP为:127.0.0.1
    该schema里有个一表叫person,请用jdbc从连接数据库开始到使用SQL取得person表中所有记录与过程。

    		Connection connection = null;
            Statement statement = null;
            ResultSet resultset = null;
            //由于在finally代码块中需要关闭资源,所以在此处定义变量而不是在try代码块中(目的是将变量的作用范围提升,提高代码复用性)
            try {
                Class.forName("com.mysql.jdbc.Driver");//1、加载驱动
                connection = DriverManager.getConnection("jdbc:mysql://192.168.0.1:7706/sky", "aaaaaa", "aaaaaa");//2、与数据库建立连接
                statement = connection.createStatement();//3、创建SQL语句对象
                String sql = "select * from person";//4、编写SQL语句
                resultSet = statement.executeQuery(sql);//5、执行SQL语句
                while(resultSet.next()) {
                    String id = resultSet.getString("id");
                    String name= resultSet.getString("name");
                    System.out.println(id + "," + name);//6、输出while循环遍历结果
                    //while循环工作原理:resultset.next()一开始指向结果集中第一行元素,之后每执行一次就往后跳动一次,为空时结束循环。
                }
            } catch (Exception e) {
                e.printStackTrace();//7、释放资源(倒序)
            } finally {
                try {
                    if (resultSet != null) {//判断对象是否为空,因为如果在赋值之前该对象为空,不加if判断的话,此时会报空指针异常的错误。(下同)
                        resultSet.close();
                    }
                } catch (SQLException e) {
                    e.printStackTrace();
                }
                try {
                    if (statement != null) {
                        statement.close();
                    }
                } catch (SQLException e) {
                    e.printStackTrace();
                }
                try {
                    if (connection != null) {
                        connection.close();
                    }
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
    

    2.使用工厂模式实现传入不同的值返回结果:
    传入参数为0,返回hello
    传入参数为1,返回word
    传入参数为2,返回java

    //抽象接口类
    public interface StrInterface {    
        public String get();
    }
    ​
    ​
    ​
    //hello类
    public class Hello implements StrInterface{    
        //实现并重写父类的get()方法
        public String get() {
            return "hello";
        }
    }
    ​
    ​
    ​
    //word类
    public class Word implements StrInterface{    
        //实现并重写父类的get()方法
        public String get() {
            return "word";
        }
    }
    ​
    ​
    //java类
    public class Java implements StrInterface{
        //实现并重写父类的get()方法
        public String get() {
            return "java";
        }
    }//工厂类
    public class Factory {
        
        public static StrInterface getStr(int param) {
            StrInterface str = null;
            if (0 == param) {
                str = new Hello();
            } else if (1 == param) {
                str = new Word();
            } else if (2 == param) {
                str = new Java();
            }
            return str;
        }
    }//main方法
    public static void main(String[] args) {
        StrInterface hello = Factory.getStr(0);
        System.out.println(hello.get());
        StrInterface word = Factory.getStr(1);
        System.out.println(word.get());
        StrInterface java = Factory.getStr(2);
        System.out.println(java.get());
    }
    

    3.select count(*) 与 select count(1) 的区别。
    如果你的数据表没有主键,那么count(1)比count()快
    如果有主键的话,那主键(联合主键)作为count的条件也比count(
    )要快
    如果你的表只有一个字段的话那count()就是最快的啦
    count(
    ) count(1) 两者比较。主要还是要count(1)所相对应的数据字段。
    如果count(1)是聚索引,id,那肯定是count(1)快。但是差的很小的。
    因为count(),自动会优化指定到那一个字段。所以没必要去count(?),用count(),sql会帮你完成优化的。

    4.java类Person有name,age字段,假设一个集合List请根据 age 从大到小对这个list进行排序。

    list.stream().sorted(Comparator.comparing(Person::getAge).reversed())
    

    5.对List进行排序,集合中有数字1,1,3,3,4,5,6,2,8,1,5。

    List<Integer> list = Lists.newArrayList(1,1,3,3,4,5,6,2,8,1,5);
    Set set = new HashSet(list);
    List changeList = new ArrayList(set);
    

    6.假设有个HashMap<String,String>,使用两种方式遍历Map对象中的数据。

    Map<String, Student> map = new HashMap<String, Student>();
    
    Iterator iterator = map.entrySet().iterator();
    while(iterator.hasNext()) {
        Map.Entry set = (Map.Entry) iterator.next();
        System.out.println(set.getKey()+","+set.getValue());
    }
    
    for (Map.Entry set:map.entrySet()) {
        System.out.println(set.getKey()+","+set.getValue());
    }
    

    7.JDBC中Statement与PrepareStatement的区别。
    prepareStatement会先初始化SQL,先把这个SQL提交到数据库中进行预处理,多次使用可提高效率。
    createStatement不会初始化,没有预处理,没次都是从0开始执行SQL

    8.使用纯javascript判断用户在input type=“text” name=“password” 输入内容为数英混合(0-9+a-z+A-Z)

    var input = document.getElementsByName("password");
    var reg=/^[A-Za-z0-9]+$/;   /*定义验证表达式*/
    if(!reg.test(input)){
     alert("请输入英数组合字符");
     return false;
    }
    

    9.在linux上查看名为“mongodb” 的进程。

    ps -ef |grep mongdb
    
  • 相关阅读:
    python 装饰器
    git
    JS原生方法实现jQuery的ready()
    js获取css属性方法
    列表页调出点击量
    数组操作
    判断IE版本
    判断IE浏览器用IE条件表达式
    [jQuery] Cannot read property ‘msie’ of undefined错误的解决方法
    复选框字段数组拆分后循环选项值,if判断根据选项值,前端输出html
  • 原文地址:https://www.cnblogs.com/javakfz/p/13938247.html
Copyright © 2011-2022 走看看