我有一个C ++类“X
”,如果要将 容器 发送到std::ostream
,这将具有特殊意义
我最初是专门为std::vector<X>
实施的:
std::ostream& operator << ( std::ostream &os, const std::vector<X> &c )
{
// The specialized logic here expects c to be a "container" in simple
// terms - only that c.begin() and c.end() return input iterators to X
}
如果我想支持std::ostream << std::deque<X>
或std::ostream << std::set<X>
或任何类似的容器类型,我所知道的唯一解决方案是复制粘贴整个函数并仅更改函数签名!
有没有办法一般编码operator << ( std::ostream &, const Container & )
?
(“Container
”此处可以是满足上述注释说明的任何类型。)
答案 0 :(得分:5)
如果您之前已阅读此答案,则可能需要向下滚动到下面的ADL版本。它有很大的改进。
首先,这是一个非常有用的简短版本:
#include <iostream>
#include <type_traits>
template<typename T, typename Iterator, typename=void>
struct is_iterator_of_type: std::false_type {};
template<typename T, typename Iterator>
struct is_iterator_of_type<
T,
Iterator,
typename std::enable_if<
std::is_same<
T,
typename std::iterator_traits< Iterator >::value_type
>::value
>::type
>: std::true_type {};
template<typename Container>
auto operator<<( std::ostream& stream, Container const& c ) ->
typename std::enable_if< is_iterator_of_type<int, typename Container::iterator>::value, std::ostream& >::type
{
return stream << "int container\n";
}
template<typename Container>
auto operator<<( std::ostream& stream, Container const& c ) ->
typename std::enable_if< is_iterator_of_type<double, typename Container::iterator>::value, std::ostream& >::type
{
return stream << "double container\n";
}
它只检测看起来有点int
和double
容器且具有不同重载的东西。我建议改变operator<<
的实施。 ;)
更合适的路线(感谢@Xeo)就是这个adl-hack。我们创建了一个辅助命名空间,我们从begin
导入end
和std
,然后在begin
和end
上执行参数相关查找的一些模板函数(查看std
版本如果我们没有更严格的绑定版本,然后使用这些aux::adl_begin
函数来确定我们传入的内容是否可以被视为X上的容器:
#include <iostream>
#include <vector>
#include <type_traits>
#include <iterator>
#include <set>
template<typename T, typename Iterator, typename=void>
struct is_iterator_of_type: std::false_type {};
template<typename T, typename Iterator>
struct is_iterator_of_type<
T,
Iterator,
typename std::enable_if<
std::is_same<
T,
typename std::iterator_traits< Iterator >::value_type
>::value
>::type
>: std::true_type {};
namespace aux {
using std::begin;
using std::end;
template<class T>
auto adl_begin(T&& v) -> decltype(begin(std::forward<T>(v))); // no implementation
template<class T>
auto adl_end(T&& v) -> decltype(end(std::forward<T>(v))); // no implementation
}
template<typename T, typename Container, typename=void>
struct is_container_of_type: std::false_type {};
template<typename T, typename Container>
struct is_container_of_type<
T,
Container,
typename std::enable_if<
// we only want this to be used if we iterable over doubles:
is_iterator_of_type<
T,
decltype(void(aux::adl_begin(*(Container*)nullptr)), aux::adl_end(*(Container*)nullptr)) // ensure being and end work as bonus
>::value
>::type
>: std::true_type
{};
template<class Ch, class Tr, class Container>
auto operator<<( std::basic_ostream<Ch,Tr>& stream, Container const& c ) ->
typename std::enable_if<
is_container_of_type<double, Container>::value,
decltype(stream)
>::type
{
stream << "'double' container: [ ";
for(auto&& e:c)
stream << e << " ";
return stream << "]";
}
int main() {
std::cout << std::vector<double>{1,2,3} << "\n";
std::cout << std::set<double>{3.14,2.7,-10} << "\n";
double array[] = {2.5, 3.14, 5.0};
std::cout << array << "\n";
}
有了这个,double
的数组不仅算作double
上的容器,所以在其命名空间中你定义begin
和end
函数的任何东西都是如此返回迭代器超过double,将容器作为参数也起作用。这与for(auto&& i:container)
查找的工作方式相匹配(完美?相当不错?),因此是“容器”的良好工作定义。
但是,请注意,随着我们添加更多这些装饰,当前编译器越来越少,我们正在使用所有C ++ 11功能。以上编译用gcc 4.6我相信,但不是gcc 4.5。*。
...
以下是原始的短代码及其周围的一些测试框架:(如果你的编译器抛出它会很有用,你可以看到下面出错的地方)
#include <iostream>
#include <type_traits>
#include <vector>
#include <iostream>
#include <set>
template<typename T, typename Iterator, typename=void>
struct is_iterator_of_type: std::false_type {};
template<typename T, typename Iterator>
struct is_iterator_of_type<
T,
Iterator,
typename std::enable_if<
std::is_same<
T,
typename std::iterator_traits< Iterator >::value_type
>::value
>::type
>: std::true_type {};
void test1() {
std::cout << is_iterator_of_type<int, std::vector<int>::iterator>::value << "\n";
}
template<typename T, typename Container>
auto foo(Container const&) -> typename std::enable_if< is_iterator_of_type<T, typename Container::iterator>::value >::type
{
std::cout << "Container of int\n";
}
template<typename T>
void foo(...)
{
std::cout << "No match\n";
}
void test2() {
std::vector<int> test;
foo<int>(test);
foo<int>(test.begin());
foo<int>(std::set<int>());
}
template<typename Container>
auto operator<<( std::ostream& stream, Container const& c ) ->
typename std::enable_if< is_iterator_of_type<int, typename Container::iterator>::value, std::ostream& >::type
{
return stream << "int container\n";
}
void test3() {
std::vector<int> test;
std::cout << test;
std::set<int> bar;
std::cout << bar;
}
template<typename Container>
auto operator<<( std::ostream& stream, Container const& c ) ->
typename std::enable_if< is_iterator_of_type<double, typename Container::iterator>::value, std::ostream& >::type
{
return stream << "double container\n";
}
void test4() {
std::vector<int> test;
std::cout << test;
std::set<int> bar;
std::cout << bar;
std::vector<double> dtest;
std::cout << dtest;
}
void test5() {
std::vector<bool> test;
// does not compile (naturally):
// std::cout << test;
}
template<typename Container>
auto operator<<( std::ostream& stream, Container const& c ) ->
typename std::enable_if< is_iterator_of_type<bool, typename Container::iterator>::value, std::ostream& >::type
{
return stream << "bool container\n";
}
void test6() {
std::vector<bool> test;
// now compiles:
std::cout << test;
}
int main() {
test1();
test2();
test3();
test4();
test5();
test6();
}
上述约一半是测试样板。 <{1}}模板和is_iterator_of_type
重载是您想要的。
我假设类型为operator<<
的容器是任何具有typedef T
且其iterator
为value_type
的类。这将涵盖每个T
容器和大多数自定义容器。
链接到执行运行:http://ideone.com/lMUF4i - 请注意,某些编译器不支持完整的C ++ 11 SFINAE,并且可能需要使用tomfoolery才能使其正常工作。
留下的测试用例可帮助某人检查编译器对这些技术的支持程度。
答案 1 :(得分:3)
template<template<class T, class A> class container>
std::ostream& opertaor << ( std::ostream&, const container<X, std::allocator<X> > &)
{
}
如果您的实施向量,列表等具有2个以上的模板参数,则无效。
答案 2 :(得分:2)
简单但不优雅 - 下一个维护代码的人可能会喜欢缺乏精美的模板!在实践中,我会将'Print'方法隐藏在cpp中,或者至少隐藏Detail
命名空间。
#include <iostream>
#include <vector>
#include <deque>
#include <list>
#include <set>
#include <multiset>
class X {};
template <typename T>
std::ostream& Print(std::ostream& os, const T& container)
{
for(auto ii = container.cbegin(); ii != container.cend(); ++ii);
//etc
//
return os;
}
std::ostream& operator<<(std::ostream& os, const std::vector<X>& v) { return Print(os, v); }
std::ostream& operator<<(std::ostream& os, const std::deque<X>& v) { return Print(os, v); }
std::ostream& operator<<(std::ostream& os, const std::list<X>& v) { return Print(os, v); }
std::ostream& operator<<(std::ostream& os, const std::set<X>& v) { return Print(os, v); }
std::ostream& operator<<(std::ostream& os, const std::multiset<X>& v) { return Print(os, v); }
int main()
{
// Example
std::vector<X> v;
std::cout << v;
}
答案 3 :(得分:0)
如果您稍微重新定义问题,为任何提供基于范围的Widget访问的类提供特殊的流式传输行为,而不是所有Widget容器的特殊行为,一个解决方案是:
template <class Container>
std::ostream& operator << (std::ostream &out, const Container &container)
{
for(const Widget& c : container) {
out << c;
out.put(' ');
}
return out;
}
适用于std::vector
,std::list
,std::deque
和std::set
。如果您尝试流式传输不提供Widget范围访问权限的内容,请说std::list<int>
,您将收到编译错误,因为const Widget引用无法绑定到std::list<int>
中的整数。如果为运营商提供过载&lt;&lt;对于std::list<int>
代码将编译。
答案 4 :(得分:-1)
虽然@razeh有一个很好的解决方案,但是如果您需要获得一种奇特的效果并且对X
的容器进行专门打印而不是Y
的容器,则可以执行以下操作:
// Types for which you want specialized streaming of containers
// We need some identifiable typedef in these types
struct X { typedef void X_type; };
struct Y { typedef void Y_type; };
// Wrappers for implementing streaming logic for each type
template <typename C>
struct WrapX
{
WrapX(const C& c) : c(c) { }
const C& c;
std::ostream& stream(std::ostream& os)
{
// Special container of X printing
return os;
}
};
template <typename C>
struct WrapY
{
WrapY(const C& c) : c(c) { }
const C& c;
std::ostream& stream(std::ostream& os)
{
// Special container of Y printing
return os;
}
};
// Wrap functions, by using a 'dummy' parameter
// we can get the compiler to select the function based
// on the incoming type
template <typename C >
WrapX<C> Wrap(const C& c, typename C::value_type::X_type* = 0) { return WrapX<C>(c); }
template <typename C>
WrapY<C> Wrap(const C& c, typename C::value_type::Y_type* = 0) { return WrapY<C>(c); }
// Overload - same problem as @razeh solution, this is a VERY generic
// function and may clash with other declarations. Keep it closely confined to
// where you need it.
template <typename C>
std::ostream& operator<<(std::ostream& os, const C& c) { return Wrap(c).stream(os); }
int main()
{
std::vector<X> vx;
std::cout << vx;
std::vector<Y> vy;
std::cout << vy;
}