摘要:
DO、DTO、BO、AO、VO、POJO定义 分层领域模型规约: DO( Data Object): 与数据库表结构一一对应,通过DAO层向上传输数据源对象 DTO( Data Transfer Object): 数据传输对象,Service或Manager向外传输的对象 BO( Business 阅读全文
摘要:
public class Test { public static void main(String[] args) { int[] arrA = new int[]{1, 2, 3, 5}; int[] arrB = new int[]{5, 3, 4, 2}; int[] ints = arra 阅读全文
摘要:
public class Test { public static void main(String[] args) { int[] arrA = new int[]{1, 2, 3, 5}; int[] arrB = new int[]{5, 3, 4, 2}; int[] ints = arra 阅读全文