zoukankan      html  css  js  c++  java
  • include vector 编译出错VC++

    error C2665: “operator new” : 5个重载中没有一个可以转换参数1(从“const char [71]”类型)
    这个错误是怎么回事啊,搜索了整个项目好像没有可疑的new操作阿。这个错误是在将两个工程合并成一个过程中产生的。合并前没有这样的错误。
    MainFrm.cpp
    d:Program FilesMicrosoft Visual Studio .NET 2003Vc7includexmemory(34) : error C2665: “operator new” : 5 个重载中没有一个可以转换参数 1(从“const char [71]”类型)
            d:Program FilesMicrosoft Visual Studio .NET 2003Vc7include ew.h(100): 可能是“void *operator new(size_t,const std::nothrow_t &) throw()”
            d:Program FilesMicrosoft Visual Studio .NET 2003Vc7include ew.h(108): 或       “void *operator new(size_t,void *)”
            试图匹配参数列表“(const char [71], int)”时
            d:Program FilesMicrosoft Visual Studio .NET 2003Vc7includexmemory(137) : 参见对正在编译的函数模板实例化“_Ty *std::_Allocate<std::allocator<_Ty>::value_type>(size_t,_Ty *)”的引用
            with
            [
                _Ty=std::allocator<char>::value_type
            ]
            d:Program FilesMicrosoft Visual Studio .NET 2003Vc7includexmemory(136) : 编译类模板成员函数“std::allocator<_Ty>::pointer std::allocator<_Ty>::allocate(std::allocator<_Ty>::size_type)”时
            with
            [
                _Ty=char
            ]
            d:Program FilesMicrosoft Visual Studio .NET 2003Vc7includexstring(30) : 参见对正在编译的类模板实例化“std::allocator<_Ty>”的引用
            with
            [
                _Ty=char
            ]
            d:Program FilesMicrosoft Visual Studio .NET 2003Vc7includexstring(46) : 参见对正在编译的类模板实例化“std::_String_val<_Ty,_Alloc>”的引用
            with
            [
                _Ty=char,
                _Alloc=std::allocator<char>
            ]
            d:Program FilesMicrosoft Visual Studio .NET 2003Vc7includexstring(1569) : 参见对正在编译的类模板实例化“std::basic_string<_Elem,_Traits,_Ax>”的引用
            with
            [
                _Elem=char,
                _Traits=std::char_traits<char>,
                _Ax=std::allocator<char>
            ]

    、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、

    据说是因为STL与DEBUG NEW运算符的冲突(影响list、vector等)

    解决方法1:注释掉以下代码:
    #ifdef _DEBUG
    #define new DEBUG_NEW
    #endif

    解决方法2:
    将:代码中的#include <vector>移到stdafx.h的开头,也就是#program once的后面。

    // http://blog.csdn.net/machh/article/details/43450725

  • 相关阅读:
    Windows 10 搭建Python3 安装使用 protobuf
    [Python爬虫] 在Windows下安装PhantomJS和CasperJS及入门介绍(上)
    [Python爬虫] 在Windows下安装PIP+Phantomjs+Selenium
    [Python爬虫] Selenium自动访问Firefox和Chrome并实现搜索截图
    [Python爬虫] Selenium实现自动登录163邮箱和Locating Elements介绍
    [Python爬虫] Selenium+Phantomjs动态获取CSDN下载资源信息和评论
    [Python爬虫] Selenium获取百度百科旅游景点的InfoBox消息盒
    [Python] 中文编码问题:raw_input输入、文件读取、变量比较等str、unicode、utf-8转换问题
    [python爬虫] Selenium定向爬取海量精美图片及搜索引擎杂谈
    [Python爬虫] scrapy爬虫系列 <一>.安装及入门介绍
  • 原文地址:https://www.cnblogs.com/liflying/p/4280119.html
Copyright © 2011-2022 走看看