本文介绍了类向导产生“奇怪”码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Windows 8& VS 12 Pro
我试图使用类向导在CView类中创建一个OnCreate消息处理程序。我得到以下内容:
Windows 8 & VS 12 Pro
I tried to use the Class Wizard to create an OnCreate message handler in CView class. I got the following:
int CJBK_View::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CView::OnCreate(lpCreateStruct) == -1)
return -1;
#3016
@R0
return -1;
#3016
@R0
#3016
@R0
// TODO: Add your specialized creation code here
@R0
return 0;
}
@RO和#3016来自哪里? ClassWizard错误?我在网上找不到任何参考资料,包括这个网站。
谢谢,
Barry
Where did the @RO and #3016 come from? ClassWizard bug? I can''t find any reference to it online, including this site.
Thanks,
Barry
推荐答案
这篇关于类向导产生“奇怪”码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!