从指向成员的指针推导类模板

发布于 2025-01-05 07:31:38 字数 462 浏览 0 评论 0原文

作为类模板参数之一,我需要使用指向成员的指针:

template <class Base, typename Member, Member Base::*m>
class MemPtrTestUgly
{
...
};

这需要用作

struct S
{
    int t;
}

MembPtrTestUgly <S, int, &S::t> m;

但我想这样使用它:

MemPtrTestNice<S, &S::t> m;

成员类型是从成员指针推导出来的。我无法使用函数模板,因为 MemPtrTest 类不应该被实例化(只有一些静态函数将被使用)。有没有办法在纯 C++03 中做到这一点(没有 Boost 或 TR1)?

As one of the class template parameters I need to use a pointer to member:

template <class Base, typename Member, Member Base::*m>
class MemPtrTestUgly
{
...
};

This needs to be used as

struct S
{
    int t;
}

MembPtrTestUgly <S, int, &S::t> m;

But I want to use it as this:

MemPtrTestNice<S, &S::t> m;

The member type is deduced from the member pointer. I cannot use function template, as the MemPtrTest class is not supposed to be instantiated (there are just some static functions that will be used). Is there a way how to do it in pure C++03 (no Boost or TR1)?

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

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

发布评论

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

评论(1

梦里人 2025-01-12 07:31:38

您可以使用部分专业化并获得一个非常漂亮的实现:

template <typename TMember, TMember MemberPtr>
class MemPtrTest;

template <typename TBase, typename TType, TType TBase::*MemberPtr>
class MemPtrTest<TType TBase::*, MemberPtr>
{
    // ...
};

这将用作:

MemPtrTest<decltype(&S::t), &S::t> m;

当然,如果您不想隐式指定成员类型,则这需要 decltype 或等效项。

You can use partial specialization and get a pretty nice-looking implementation:

template <typename TMember, TMember MemberPtr>
class MemPtrTest;

template <typename TBase, typename TType, TType TBase::*MemberPtr>
class MemPtrTest<TType TBase::*, MemberPtr>
{
    // ...
};

This would be used as:

MemPtrTest<decltype(&S::t), &S::t> m;

Of course, this requires decltype or an equivalent, if you don't want to implicitly specify the member type.

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