小知识点总结

1.hashmap对象可以转换为string

2.stringutils.isempty(),是apache common-lang 包的类

3.ant可以完成xml文件定义的操作

4.什么叫匿名内部类?new对象时候,直接写出来实现代码的类,就是创建匿名类

TimerTask task = new TimerTask() {
public void run() {
... //每次需要执行的代码放到这里面。
}
};

原文地址:https://www.cnblogs.com/panxuejun/p/6480618.html