3

提升 1.49 gcc 版本 4.6.3

        std::transform(barcodeFiles.begin(), barcodeFiles.end(), std::ostream_iterator<std::string>(std::cerr, "\n"),
            boost::bind(&fs::path::string, _1));

如何编辑此代码?

[ 65%] 构建 CXX 对象 c++/lib/demultiplex/CMakeFiles/casava_demultiplex.dir/BclDemultiplexer.cpp.o
/bak/software/Linux/CASAVA_v1.8.2/src/c++/lib/demultiplex/BclDemultiplexer.cpp: 在成员函数'const casava::demultiplex::BclDemultiplexer::ClusterCorrectedBarcodeIndex casava::demultiplex::BclDemultiplexer::mapClusterBarcodes(unsigned int) 常量':
/bak/software/Linux/CASAVA_v1.8.2/src/c++/lib/demultiplex/BclDemultiplexer.cpp:65:50:错误:没有匹配函数调用'bind(, boost::arg&)'
/bak/software/Linux/CASAVA_v1.8.2/src/c++/lib/demultiplex/BclDemultiplexer.cpp:65:50
4

2 回答 2

6

答案可以在boost bind的FAQ中找到

std::transform(
    paths.begin(), paths.end(),
    std::ostream_iterator<std::string>(
        std::cerr, "\n"
    ),
    boost::bind(
        static_cast<
            std::string const & (boost::filesystem::path::*)() const
        >(&boost::filesystem::path::string), 
        _1
    )
);
于 2012-05-31T05:45:38.663 回答
3

如果您可以使用 C++11(GCC 4.6 使用标志 -std=c++0x 支持它),那么您可以使用 lambda 函数,它会变得更具可读性:

std::transform(barcodeFiles.begin(), barcodeFiles.end(),
               std::ostream_iterator<std::string>(std::cerr, "\n"),
               [](const fs::path& p) {
                   return p.string();
               }
);
于 2012-05-31T09:39:59.327 回答