gpt4 book ai didi

c++ - C++获取构造函数的类型

转载 作者:行者123 更新时间:2023-12-02 10:31:07 27 4
gpt4 key购买 nike

我正在尝试推断类的构造函数的参数的类型。我已经成功获取了成员方法的参数类型,但是我的方法对于构造函数却失败了,因为它依赖于获取指向成员方法的指针的类型。

#include <tuple>
#include <type_traits>

// Some type with a constructor
struct foo {
foo(int, double) {}
void test(char, char) {};
};

// Extract the first parameter
template<class T>
struct func_traits {};

template<class Return, class Type, class ... Params>
struct func_traits<Return(Type::*)(Params...)> {
using params = std::tuple<Params...>;
};

// Get the parameters for foo::test
using test_type = decltype(&foo::test);
using test_params = typename func_traits<test_type>::params;
static_assert(std::is_same<test_params, std::tuple<char, char>>::value, "Not the right tuple");

// Get the parameters for foo::foo
using ctor_type = decltype(&foo::foo); // Forbidden
using ctor_type = typename func_traits<ctor_type>::params;
static_assert(std::is_same<ctor_type, std::tuple<int, double>>::value, "Not the right tuple");

禁止获取构造函数的地址,但是我只想知道指针的类型。
  • 还有另一种确定此类指针类型的方法吗?
  • 否则,还有另一种获取构造函数类型的方法吗?
  • 最佳答案

    没有办法将构造函数称为函数。该标准非常明确地指出,构造函数没有名称。您不能使用构造函数的地址。

    一种替代方法可能是要求某种类型的机器使用任何类型,它具有关联的特征类型,该特征类型提供元组或与构造函数相对应的内容。

    在我们获得对decltype的语言支持之前,我记得Boost功能用于查找依赖可能类型的注册方案的函数的结果类型。

    关于c++ - C++获取构造函数的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62240022/

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