标签: java xml
当我写这行时:
this.atPutIfNotNil("qwerttty", profile.queryValue("qwertty"), profile);
抛出编译时错误 但当我将其更改为queryNode()时,它已得到纠正。
queryNode()
this.atPutIfNotNil("qwerttty", profile.queryNode("qwertty"), profile);
我想知道两者之间有什么区别。