240 发简信
IP属地:北京
  • 设计模式——单例模式

    文章概要 1、什么是单例2、为什么需要单例3、单例的优点和缺点4、单例的写法和比较5、序列化破坏单例6、反射破坏单例7、不使用synchroni...

  • mybatis中带下划线变量映射的坑

    在mybatis配置文件中配置

  • Resize,w 360,h 240
    关于线程问题

    正常来说,我们都认为把flag字段添加volatile,线程就可以正常退出实验发现,结果并不像我们所想的那样注释掉1和2,线程不会退出,写上1或...

  • mybatis中#和$

    1、#{} 进行预编译,使用jdbc时的preparedStatement,转换成占位符例如:select * from user where ...

  • Resize,w 360,h 240
    CountDownLatch、CyclicBarrier、join、awaitTermination

    1、CountDownLatch程序计数器官方解释:A synchronization aid that allows one or more ...

  • Resize,w 360,h 240
    ExecutorService中submit和execute区别

    1、execute是接口Executor的方法submit是Executor子接口ExecutorService的方法2、接收参数不同 3、返回...