思考: 提起分页查询,想必任何一个开发人员(不论是新手还是老手)都能快速编码实现,实现原理再简单不过,无非就是写一条SELECT查询的SQL语句,ORDER BY分页排序的字段, 再结合limit (页码-1),每页记录数,这样即可返回指定页码的分页记录,类似SQL如下所示: select * from table where 查询条件 order by id limit 100,100; -- 这里假设是第2页(limit 第1个值从0开始),每页100条 那如果是想将多张表的记录合并一起进行
class Singleton { private static Singleton instance = new Singleton(); public static int a; public static int b=0; private Singleton() { a++; b++; } public static Singleton getInstance() { return instance; } } public class MAINTEST { public static vo