函数重载错误

发布于 2024-11-04 23:52:49 字数 1703 浏览 2 评论 0原文

我不明白为什么代码会这样?

#include <iostream>

#include <boost/fusion/container/vector.hpp>
#include <boost/fusion/include/vector.hpp>
#include <boost/fusion/container/vector/vector_fwd.hpp>
#include <boost/fusion/include/vector_fwd.hpp>
#include <boost/fusion/container/generation/make_vector.hpp>
#include <boost/fusion/include/make_vector.hpp>
#include <boost/fusion/sequence/io.hpp>
#include <boost/fusion/include/io.hpp>

template<typename Ar>
void func(Ar& ar, const boost::fusion::vector<>& v) {
   std::cout << v << std::endl;
}

template<typename Ar, typename T0, typename T1>
void func(Ar& ar, const boost::fusion::vector<T0, T1>& v) {
   std::cout << v << std::endl;
}

struct type {
   template<typename T>
   type& operator& (const T& v) {
      func(*this, v);
      return *this;
   }
};

int main() {
   type t;
   t & boost::fusion::make_vector(33,44); // 1. <<<<<<<<<<<<<<<<<<<<<<<<

   boost::fusion::vector<int, int> v(55,66); // 2.
   t & v;
}

测试代码

问题是,为什么在第一种情况下调用空向量的 func() ?

有关此主题的文档:

boost: :融合::向量

boost::fusion: :make_vector()

谢谢。

I can't understand why the code behaves this way?

#include <iostream>

#include <boost/fusion/container/vector.hpp>
#include <boost/fusion/include/vector.hpp>
#include <boost/fusion/container/vector/vector_fwd.hpp>
#include <boost/fusion/include/vector_fwd.hpp>
#include <boost/fusion/container/generation/make_vector.hpp>
#include <boost/fusion/include/make_vector.hpp>
#include <boost/fusion/sequence/io.hpp>
#include <boost/fusion/include/io.hpp>

template<typename Ar>
void func(Ar& ar, const boost::fusion::vector<>& v) {
   std::cout << v << std::endl;
}

template<typename Ar, typename T0, typename T1>
void func(Ar& ar, const boost::fusion::vector<T0, T1>& v) {
   std::cout << v << std::endl;
}

struct type {
   template<typename T>
   type& operator& (const T& v) {
      func(*this, v);
      return *this;
   }
};

int main() {
   type t;
   t & boost::fusion::make_vector(33,44); // 1. <<<<<<<<<<<<<<<<<<<<<<<<

   boost::fusion::vector<int, int> v(55,66); // 2.
   t & v;
}

test code here

The question is, why in the first case the func() for an empty vector is called?

Documentation on this topic:

boost::fusion::vector

boost::fusion::make_vector()

Thank's.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

山色无中 2024-11-11 23:52:49

这大致是我的理解...

boost::fusion::make_vector() 从您使用 boost::fusion::make_vector(33,44) 返回一个boost::fusion::vector2 类型,而不是 boost::fusion::vector > (可变)类型。然而,boost::fusion::vectorN类型可以将自身转换为boost::fusion::vector<>(可变参数)类型。

第一个函数接受 NO 类型的可变参数向量。因此不会显示任何元素。第二个版本接受声明了两种模板类型的可变参数类型,但是由于第一个版本匹配得更好(因为默认模板类型启动),所以当您使用 boost::fusion::make_vector 时,它会选择第二个版本。 。当您像第二种情况一样定义向量的类型时,它指定了强类型,因此与第二个函数匹配并显示 int 和 int 类型的两个元素。

This is roughly what I understand...

boost::fusion::make_vector() from your usage of boost::fusion::make_vector(33,44) returns a boost::fusion::vector2<int, int> type and NOT a boost::fusion::vector<int, int, T2, T3,...> (variadic) type. boost::fusion::vectorN types can however convert itself to boost::fusion::vector<> (variadic) type.

The first function accepts a variadic vector with NO type. Hence no elements are displayed. The second version accepts a variadic type with two template types declared, however since the first one matches better (because the default template types kick in) it gets choosen over the second one, when you use boost::fusion::make_vector. When you define the type of the vector as in the second case, it has strong type specified and hence matches the second function and displays two elements of type int and int.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文