发布时间:2016-06-02 10:31:14
1、跨时区问题2、前后段日期统一处理工具3、前后端文件上传统一处理方案4、前段提示信息格式封装,统一提示信息规格标准......【阅读全文】
发布时间:2015-02-26 15:07:08
1、Identify the aspects of your application that vary and separate them from what stays the same2、Program to an interface,not an implementation3、Favor composition over inheritance......【阅读全文】
发布时间:2013-10-30 11:01:55
外部类或外部接口:类修饰符只有public、默认。即public class A、class A、public interface B、interface B内部类:类修饰符可以为任意。即public class Inner、class Inner、protected class Inner、private class Inner内部接口:1、外部接口中定义的内部接口修饰符只有public,若不写public则默认的也为public。inte.........【阅读全文】