一个KERN-EXEC 3错误

来源:互联网 发布:js拆分数字变成数组 编辑:程序博客网 时间:2024/05/17 06:24
为什么我的程序刚启动就报一个KERN-EXEC 3错误呢,把ActiveL()函数注释掉就不报了,但是程序的界面却不显示,这是怎么回事呢?
以下是继承自CCoeControl类的ConstructL()方法的实现
void CGUITestAppView::ConstructL( const TRect& aRect)
{
// Create a window for this application view
CreateWindowL ();
CalculateRects ();
RDebug::Printf ("1");
iSample1 = CSimpleControl::NewL (iTopRect, this);
iSample2 = CSimpleControl::NewL (iBottomRect, this);
// Set the windows size
SetRect ( aRect);

ActivateL(); //出错行,把这句注释掉就不报,但是程序界面显示不出来
}
请高手帮忙给看看.
0 0
原创粉丝点击