错误 88 error C2248: “CObject::CObject”: 无法访问 private 成员(在“CObject”类中声明) c:\program files (x86)\microsoft visual studio 9.0\vc\atlmfc\include\afxcoll.h 590

最近接收了以前新公司遗留的代码,一个函数动不动就少的一千行,多的几千行,真是受不了这编码风格!

于是便使用了VS自带的重构工具,选择代码后右键-重构-提取方法,提取完方法就编译不过,想了好久原因,原来是参数的问题,

参数中大量使用了CStringArray,例如: static void HandleCmd26(CStringArray strCmdPair)

这样就相当于复制一份strCmdPair,相当于做了一个 赋值操作,而strCmdPair是个object类型,不能简单进行=,实际上应该是取引用

改为static void HandleCmd26(CStringArray &strCmdPair)就没问题了!

上一篇:Unable to load configuration. - action - file:/C:/Program%20Files/Apache%20Software%20Foundation/Tomcat%209.0/webapps/Teacher04/WEB-INF/classes/struts.xml:9:54


下一篇:python setup.py install 报错:error: [WinError 3] 系统找不到指定的路径。: 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\PlatformSDK\\lib