摘要:
饿汉式 线程安全,由jvm类加载时初始化,保证线程安全 public class EagerSingleton { // static保证唯一,final保证不可变 private static final EagerSingleton INSTANCE = new EagerSingleton() 阅读全文
摘要:
MySQL进阶 select * from tb_name where id = '1' group by id having id < 3 order by id asc limit 2, 5; MySQL体系结构 连接层最上层是一些客户端和链接服务,主要完成一些类似于连接处理、授权认证、及相关的 阅读全文