如题所示....这里不大懂,请教下
Documentbuilderfactory()是抽象类 不能够直接被实例化 必须通过已实现的子类来创建对象 这里他直接有个newInstance()方法给你用 就相当于是实例化了 所以就用这个
不行 下面是源码
protected DocumentBuilderFactory () {
}
public static DocumentBuilderFactory newInstance() {
// instantiate the class directly rather than using reflection
return new DocumentBuilderFactoryImpl();
}
注意构造方法是受保护的,也就是说不能直接new
要用newInstance