上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 66 下一页
摘要: 工具-》模板-》展开Java选中Java类-》在编辑器中打开修改如下:package ${package};/** * @author ${user} * @date ${date} ${time} */public class ${name} {}(1)Java类package ${package... 阅读全文
posted @ 2015-02-28 13:39 yshy 阅读(5241) 评论(0) 推荐(0) 编辑
摘要: protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { ... 阅读全文
posted @ 2015-02-28 13:22 yshy 阅读(2777) 评论(0) 推荐(0) 编辑
摘要: 下载界面:http://maven.apache.org/download.cgi当前下载:apache-maven-3.2.5-bin.zip解压到:/usr/lib/jvm/apache-maven-3.2.5修改配置文件:y@y:~$ sudo vim /etc/profile#Maven3e... 阅读全文
posted @ 2015-02-25 17:17 yshy 阅读(556) 评论(0) 推荐(0) 编辑
摘要: Item4:Enforce noninstantiability with a private constructor通过构造私有化,禁止对象被实例化。public class UtilClass { private UtilClass(){ //防止类内的函数调用构造函... 阅读全文
posted @ 2015-02-25 13:31 yshy 阅读(266) 评论(0) 推荐(0) 编辑
摘要: Item3:Enforce the singleton property with a private constructor or an enum type采用枚举类型(ENUM)实现单例模式。public enum Elvis { INSTANCE; public void ... 阅读全文
posted @ 2015-02-25 13:09 yshy 阅读(155) 评论(0) 推荐(0) 编辑
摘要: Item2:Consider a builder when faced with many constructor parameters当构造方法有多个参数时,可以考虑使用builder方式进行处理。实例代码:public class NutritionFacts { private fina... 阅读全文
posted @ 2015-02-25 10:46 yshy 阅读(255) 评论(0) 推荐(0) 编辑
摘要: SQL> set autotraceUsage: SET AUTOT[RACE] {OFF | ON | TRACE[ONLY]} [EXP[LAIN]] [STAT[ISTICS]]SQL> set autotrace onSP2-0618: Cannot find the Session Ide... 阅读全文
posted @ 2015-02-16 15:47 yshy 阅读(343) 评论(0) 推荐(0) 编辑
摘要: SQL> conn scott/tigerERROR:ORA-28002: the password will expire within 1 daysConnected.SQL> conn /as sysdbaConnected.SQL> alter user scott identified b... 阅读全文
posted @ 2015-02-16 13:57 yshy 阅读(258) 评论(0) 推荐(0) 编辑
摘要: //声明是Android应用程序apply plugin: 'com.android.application'android { //编译SDK版本 compileSdkVersion 21 buildToolsVersion "21.1.2" defaultConfig {... 阅读全文
posted @ 2015-02-14 09:13 yshy 阅读(454) 评论(0) 推荐(0) 编辑
摘要: 错误信息如下图所示:重启AndroidStudio问题解决。 阅读全文
posted @ 2015-02-13 16:08 yshy 阅读(393) 评论(0) 推荐(0) 编辑
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 66 下一页