TiXmlElement *pElem;
std::string StatusResponse;
pElem = hResponse.FirstChild("StatusResponse").Element();
if (pElem)
StatusResponse = pElem->GetText();
如果pElem
有效但元素不包含文本,pElem->GetText()
将返回NULL指针,从而导致异常。我该怎么办呢?
感谢。
答案 0 :(得分:5)
if (pElem && pElem->GetText())
StatusResponse = pElem->GetText();