摘要: 1 阅读全文
posted @ 2015-06-05 15:57 陶修瑕 阅读(107) 评论(0) 推荐(0) 编辑
摘要: tomcat下添加用户和密码:conf下tomcat-user.xml添加 这样就增加了一个用户,用户名abc,密码是aaaaa,角色是manager-gui 阅读全文
posted @ 2015-06-05 11:39 陶修瑕 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 将博客搬至CSDN 阅读全文
posted @ 2015-06-04 13:28 陶修瑕 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 转载自如何在Ubuntu 14.04中安装最新版Eclipse想必很多开发人员都知道,Ubuntu 软件源中提供的并不是最新版本的 Eclipse,本教程就教大家如何在 Ubuntu 14.04 中快速安装 Eclipse 官方发布的最新版本。到目前为止,Eclipse 的官方最新版本为 Eclip... 阅读全文
posted @ 2015-05-15 18:55 陶修瑕 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 转载自Ubuntu 12.10 安装 jdk-7u10-linux-x64.tar.gz1.将jdk-8u45-linux-i586.tar.gz.tar.gz拷贝到/usr/lib/jdk/目录下面,这里如果没有jdk文件夹,则创建该文件夹,命令: sudo mkdir jdk //创建文件夹j... 阅读全文
posted @ 2015-05-15 01:44 陶修瑕 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 我的算法学习之路-lucida 阅读全文
posted @ 2015-04-26 21:37 陶修瑕 阅读(123) 评论(0) 推荐(0) 编辑
摘要: As usual, constructors are different from other kinds of methods. This is also true when polymorphism is involved. Even though constructors are not po... 阅读全文
posted @ 2015-04-25 20:51 陶修瑕 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 看不懂 1 import java.util.*; 2 3 class Value { 4 int i; 5 6 public Value(int i) { 7 this.i = i; 8 } 9 }10 11 public class FinalData... 阅读全文
posted @ 2015-04-23 20:57 陶修瑕 阅读(169) 评论(0) 推荐(0) 编辑
摘要: Create a simple class. Inside a second class, define a reference to an object ofthe first class. Use lazy initialization to instantiate this object. 1... 阅读全文
posted @ 2015-04-21 20:22 陶修瑕 阅读(175) 评论(0) 推荐(0) 编辑
摘要: If you want the references initialized,you can do it: 1.At the point the objects are defined.This means that they'll always be initialized before the... 阅读全文
posted @ 2015-04-21 17:47 陶修瑕 阅读(185) 评论(0) 推荐(0) 编辑