ฉันมีรหัสที่ค้นหาและพิมพ์การจับคู่ของรูปแบบเหมือนกับการข้ามคอนเทนเนอร์ของสตริง ทำการพิมพ์ในฟังก์ชั่นfooที่เทมเพลต
รหัส
#include <iostream>
#include <algorithm>
#include <iterator>
#include <vector>
#include <string>
#include <tuple>
#include <utility>
template<typename Iterator, template<typename> class Container>
void foo(Iterator first, Container<std::pair<Iterator, Iterator>> const &findings)
{
for (auto const &finding : findings)
{
std::cout << "pos = " << std::distance(first, finding.first) << " ";
std::copy(finding.first, finding.second, std::ostream_iterator<char>(std::cout));
std::cout << '\n';
}
}
int main()
{
std::vector<std::string> strs = { "hello, world", "world my world", "world, it is me" };
std::string const pattern = "world";
for (auto const &str : strs)
{
std::vector<std::pair<std::string::const_iterator, std::string::const_iterator>> findings;
for (std::string::const_iterator match_start = str.cbegin(), match_end;
match_start != str.cend();
match_start = match_end)
{
match_start = std::search(match_start, str.cend(), pattern.cbegin(), pattern.cend());
if (match_start != match_end)
findings.push_back({match_start, match_start + pattern.size()});
}
foo(str.cbegin(), findings);
}
return 0;
}
เมื่อการคอมไพล์ฉันพบข้อผิดพลาดที่การหักค่าประเภทล้มเหลวเนื่องจากความไม่สอดคล้องกันของตัววนซ้ำที่ถูกจัดเตรียมไว้
ข้อผิดพลาดในการรวบรวมGCC :
prog.cpp:35:9: error: no matching function for call to 'foo'
foo(str.cbegin(), findings);
^~~
prog.cpp:10:6: note: candidate template ignored: substitution failure [with Iterator = __gnu_cxx::__normal_iterator<const char *, std::__cxx11::basic_string<char> >]: template template argument has different template parameters than its corresponding template template parameter
void foo(Iterator first, Container<std::pair<Iterator, Iterator>> const &findings)
^
1 error generated.
เสียงดังกราวของเอาท์พุท:
main.cpp:34:9: error: no matching function for call to 'foo'
foo(str.cbegin(), findings);
^~~
main.cpp:9:6: note: candidate template ignored: substitution failure [with Iterator = std::__1::__wrap_iter<const char *>]: template template argument has different template parameters than its corresponding template template parameter
void foo(Iterator first, Container<std::pair<Iterator, Iterator>> const &findings)
ฉันไม่จับอะไร การใช้เทมเพลตชนิดการหักแม่แบบของฉันไม่ถูกต้องและดูเหมือนว่าเป็นการละเมิดจากมุมมองมาตรฐานหรือไม่ ทั้งกรัม ++ - 9.2กับlistdc ++ 11หรือเสียงดังกราว ++กับlibc ++สามารถที่จะรวบรวมนี้
-std=c++17
และบนเสียงดังกราวด้วย-std=c++17
-frelaxed-template-template-args
ธง มิฉะนั้นดูเหมือนว่าคุณต้องการพารามิเตอร์เทมเพลตอื่นสำหรับตัวจัดสรร