java
qq_32755757
这个作者很懒,什么都没留下…
展开
-
this() 和 super()的区别
this()用于构造方法重载时调用本类中的其他构造方法。 class Value{ private String s; private int i; public Value() { } public Value(String s) { this(); this.s = s; } public Value(...原创 2018-12-28 15:28:38 · 505 阅读 · 0 评论 -
== 和 equals()方法的区别
代码1: public static void main(String[] args) { int a = 10; int b = 10; Integer c = 10; Integer d = 10; Integer e = 128; Integer f = 128; System...原创 2018-12-27 19:21:48 · 205 阅读 · 0 评论 -
xml解析工具类
import java.io.ByteArrayInputStream; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import org.apache.commons.lang3.StringUtils; import org.dom4j.Document; import org.dom4j.Element; import org.dom4j.io.SAXReader; import ...转载 2020-06-10 16:38:21 · 252 阅读 · 0 评论