1
TiXmlElement *pElem;
std::string StatusResponse;
pElem = hResponse.FirstChild("StatusResponse").Element();
if (pElem)
StatusResponse = pElem->GetText();
如果pElem
是有效的,但該元素不包含文本,pElem->GetText()
返回NULL指針,引起異常。我該如何處理?如何處理TinyXML的空指針返回上的getText()
謝謝。
如何非常明顯。非常感謝你。 – Smurf64
我會將GetText()的返回值存儲到局部變量,以免兩次調用GetText()。 –