c++ - boost::filesystem::path::append(通过迭代器)导致编译器错误

标签 c++ boost stl compiler-errors boost-filesystem

我正在尝试使用 boost::filesystem 生成新路径,如下所示

#include <iostream>
#include <string>
#include <boost\filesystem.hpp>

namespace bf = boost::filesystem;

bf::path o("C:\\mir");
bf::path p("C:\\mir\\dir\\beer.txt");
bf::path r("C:\\test");

auto pp = std::mismatch(o.begin(), o.end(), p.begin());
r.append(pp.second, p.end()); // this line causes compiler error

编译错误如下

c:\program files (x86)\microsoft visual studio 10.0\vc\include\xutility(2885): warning C4996: 'std::_Mismatch1': Function call with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS. See documentation on how to use Visual C++ 'Checked Iterators'
      c:\vc\include\xutility(2868) : see declaration of 'std::_Mismatch1'
      g:\copywithpath\copywithpath.cpp(40) : see reference to function template instantiation 'std::pair<_Ty1,_Ty2> std::mismatch<boost::filesystem3::path::iterator,boost::filesystem3::path::iterator>(_InIt1,_InIt1,_InIt2)' being compiled
      with
      [
          _Ty1=boost::filesystem3::path::iterator,
          _Ty2=boost::filesystem3::path::iterator,
          _InIt1=boost::filesystem3::path::iterator,
          _InIt2=boost::filesystem3::path::iterator
      ]
c:\vc\include\xstring(506): error C2621: member 'std::_String_val<_Elem,_Alloc>::_Bxty::_Buf' of union 'std::_String_val<_Elem,_Alloc>::_Bxty' has copy constructor
      with
      [
          _Elem=boost::filesystem3::path,
          _Alloc=std::allocator<boost::filesystem3::path>
      ]
      c:\vc\include\xstring(509) : see reference to class template instantiation 'std::_String_val<_Elem,_Alloc>::_Bxty' being compiled
      with
      [
          _Elem=boost::filesystem3::path,
          _Alloc=std::allocator<boost::filesystem3::path>
      ]
      c:\vc\include\xstring(522) : see reference to class template instantiation 'std::_String_val<_Elem,_Alloc>' being compiled
      with
      [
          _Elem=boost::filesystem3::path,
          _Alloc=std::allocator<boost::filesystem3::path>
      ]
      f:\boost\filesystem\v3\path.hpp(621) : see reference to class template instantiation 'std::basic_string<_Elem>' being compiled
      with
      [
          _Elem=boost::filesystem3::path
      ]
      f:\boost\filesystem\v3\path.hpp(232) : see reference to function template instantiation 'boost::filesystem3::path &boost::filesystem3::path::append<InputIterator>(InputIterator,InputIterator,const boost::filesystem3::path::codecvt_type &)' being compiled
      with
      [
          InputIterator=boost::filesystem3::path::iterator
      ]
      g:\copywithpath\copywithpath.cpp(42) : see reference to function template instantiation 'boost::filesystem3::path &boost::filesystem3::path::append<_Ty2>(InputIterator,InputIterator)' being compiled
      with
      [
          _Ty2=boost::filesystem3::path::iterator,
          InputIterator=boost::filesystem3::path::iterator
      ]
f:\boost\filesystem\v3\path.hpp(622): error C2665: 'boost::filesystem3::path_traits::convert' : none of the 8 overloads could convert all the argument types
     f:\boost\filesystem\v3\path_traits.hpp(96): could be 'void boost::filesystem3::path_traits::convert(const char *,const char *,std::wstring &,const boost::filesystem3::path_traits::codecvt_type &)'
     f:\boost\filesystem\v3\path_traits.hpp(102): or       'void boost::filesystem3::path_traits::convert(const wchar_t *,const wchar_t *,std::string &,const boost::filesystem3::path_traits::codecvt_type &)'
     f:\boost\filesystem\v3\path_traits.hpp(130): or       'void boost::filesystem3::path_traits::convert(const char *,const char *,std::string &,const boost::filesystem3::path_traits::codecvt_type &)'
     f:\boost\filesystem\v3\path_traits.hpp(150): or       'void boost::filesystem3::path_traits::convert(const wchar_t *,const wchar_t *,std::wstring &,const boost::filesystem3::path_traits::codecvt_type &)'
     while trying to match the argument list '(const boost::filesystem3::path *, const boost::filesystem3::path *, boost::filesystem3::path::string_type, const boost::filesystem3::path::codecvt_type)'

我的代码有什么问题以及如何修复它。提前致谢。

最佳答案

path::append 需要一系列字符,而您提供了一系列路径。您应该单独附加每个元素:

auto pp = std::mismatch(o.begin(), o.end(), p.begin());
for(auto iter = pp.second; iter != p.end(); ++iter)
    r /= *iter;

不幸的是,boost::filesystem 路径不提供路径算法的接口(interface)。

关于c++ - boost::filesystem::path::append(通过迭代器)导致编译器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7779052/

相关文章:

c++ - 如何以编程方式为添加到 FILE 端口的打印机提供目标文件路径?

c++ - C++ 中的可变大小数组

c++ - 海合会 |源码编译麻烦

ubuntu - 如何修复 "error: cannot find the flags to link with Boost unit_test_framework"

c++ - 如何为动态类型成员调用boost register_type函数

c++ - 如何将 std::sort 与结构 vector 和比较函数一起使用?

c++ - 调用需要引用 vector 的函数时崩溃

c++ - 如何专门化类模板的静态函数?

c++ - 使用 OpenCV 特征检测器匹配热成像/非热成像图像

c++ - stringstream 可以解析这样的东西吗?