根據容器的特性,您可能會發現方便過載。
這允許在接受引用,常量引用和r值引用方面稍微靈活一點,而只寫一次函數。
這是它實現了一個模板foo
爲任何具有begin()
和end()
方法,除了標準::字符串,它通過一個非模板超載都有自己的foo
版本的一個小例子:
#include <vector>
#include <map>
#include <iostream>
#include <iomanip>
// trait type to determine whether something models a range.
template<class T>
struct is_range
{
template <class Y> static auto has_begin(T*p) -> decltype(p->begin(), void(), std::true_type());
template <class Y> static auto has_begin(...) -> decltype(std::false_type());
template <class Y> static auto has_end(T*p) -> decltype(p->end(), void(), std::true_type());
template <class Y> static auto has_end(...) -> decltype(std::false_type());
static constexpr bool value = decltype(has_begin<T>(0))::value && decltype(has_end<T>(0))::value;
};
// specialised mini-functor for dealing with corner cases
template<class T>
struct emitter
{
std::ostream& operator()(std::ostream& os, const T& t) const {
return os << t;
}
};
template<class T, class U>
struct emitter<std::pair<T, U>>
{
std::ostream& operator()(std::ostream& os, const std::pair<T, U>& p) const
{
return os << "(" << p.first << ", " << p.second << ")";
}
};
// a version of foo which works for all known containers, whether temporararies or references
template<class Container,
std::enable_if_t<is_range<std::decay_t<Container>>::value and not std::is_same<std::decay_t<Container>, std::string>::value>* = nullptr
>
void foo(Container&& c)
{
// do things with c.begin(), c.end()
bool first = true;
for (auto& x : c) {
using emitter_type = emitter<std::decay_t<decltype(x)>>;
auto emit = emitter_type();
if (first) {
first = false;
} else {
std::cout << ", ";
}
emit(std::cout, x);
}
std::cout << std::endl;
}
// overload for std string
void foo(const std::string& s)
{
std::cout << std::quoted(s) << std::endl;
}
int main()
{
using namespace std::literals;
foo(std::map<std::string, std::string> {
{
{ { "foo" }, { "bar" } },
{ { "aaaa" }, { "bbbbb" } }
}
});
foo(std::vector<std::string> {
{ "foo" },
{ "bar" },
{ "xxxx" },
{ "yyyy" } });
foo("hello"s);
}
預期輸出:
(aaaa, bbbbb), (foo, bar)
foo, bar, xxxx, yyyy
"hello"
只是有一個'模板<類容器>'並使用它作爲你的容器 –
[OT]:你可能想通過const引用,而不是用v來傳遞參數ALUE。 – Jarod42
@ Jarod42好點,我一直這樣做,但爲了簡單起見,在這裏忽略它 –