gpt4 book ai didi

c++ - typedef 模板参数成员函数的返回类型

转载 作者:搜寻专家 更新时间:2023-10-31 01:44:03 24 4
gpt4 key购买 nike

我正在尝试 typedef 模板参数的成员函数的返回类型。所以像这样:

template <typename T>
class DoSomething{
typedef return_type (T::*x)(void)const data_type;
data_type x1;
};

在这种情况下,我想typedef 模板参数的const 成员函数的返回类型,称为x。在这个例子中 return_type 只是一个占位符,只是为了展示我想要的。它不会编译。

编辑:我想要这样的原因是:在这个例子中,我想对 x1 或 data_type 类型的任何其他变量进行操作,其精度与 x() 成员函数的返回类型相同.因此,如果 x() 返回一个 float ,我所有的模板操作都将是 float 等等。

我找到了 one answer所以。但我不想使用任何 C++11 功能。所以没有 decltype,没有 auto。只是一些可以与 C++03 编译器一起工作的东西。

最佳答案

这似乎有效(即使 Boost Typeof 被迫使用长距离而不是任何 C++11 或特定于编译器的功能):

#include <boost/utility/declval.hpp>
#include <boost/typeof/typeof.hpp>

template <typename T>
class DoSomething {
typedef BOOST_TYPEOF_TPL(boost::declval<T const&>().x()) data_type;
data_type x1;
};

但结果类型不能涉及任何类、结构、 union 或枚举类型。

关于c++ - typedef 模板参数成员函数的返回类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24103424/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com