当前位置: 代码迷 >> Symbian >> 这段代码为什么会错误退出
  详细解决方案

这段代码为什么会错误退出

热度:4976   发布时间:2013-02-26 00:00:00.0
这段代码为什么会异常退出?
void CMPThemeController::SetCategoryList(CDesCArray& aArray)
{
_LIT(KListItemFormat, "\t%S");
TInt num = iCategoryArray.Count();
TBuf<20> temp;
for(int i=0;i<num;i++)
{
temp.Format(KListItemFormat,iCategoryArray[i].name);
aArray.AppendL(temp);
}
}
其中,iCategoryArray.name是确定有值的。

------解决方案--------------------------------------------------------
try:
temp.Format(KListItemFormat,&iCategoryArray[i].name);
  相关解决方案