本文主要是介绍MFC错误E0384没有与参数列表匹配的重载pcl::PointCloud Point Toperator new其中PointT pcl::PointXYZ,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
原文链接:https://blog.csdn.net/snipertly/article/details/91355298
MFC在最开头加了这样的预编译,导致PCL的new报错。
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
解决办法:需要将这三行注释掉
这篇关于MFC错误E0384没有与参数列表匹配的重载pcl::PointCloud Point Toperator new其中PointT pcl::PointXYZ的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!