class std::vector

问题描述

今天用vs编译C++代码时碰到了如下错误:
这里写图片描述

报错信息:

错误  LNK2005 class std::vector<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class std::allocator<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > > > fileList_left

报错信息提示命名冲突,在其他地方有相同的定义。于是尝试去寻找定义重复的代码,无果。最后求助于度娘,查到了两个文章:
由std::string继承引起的LNK 2005错误
error LNK2005: “public: class std::vector

解决办法

两种方法:

  1. 换IDE,不用visual studio;
  2. 在link commandline加上一行 /FORCE:MULTIPLE 点击OK 就解决了;简单说就是VS的STL从import变成static了。
    class std::vector_第1张图片

你可能感兴趣的:(OpenCV)