我为 XML Lite 库编写了一个小包装器,以便在我的 MFC 项目中使用它。我可以使用此代码吗?
CString GetValue()
{
const WCHAR* pwszValue = NULL;
UINT cwchValue = 0;
m_pReader->GetValue(&pwszValue, &cwchValue);
return CString(pwszValue);
}
或者我应该在 GetValue 方法签名中使用 CString& 参数吗?