gpt4 book ai didi

c++ - 具有范围限定符的模板语法的含义

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:03:43 24 4
gpt4 key购买 nike

我最近看到了这个:

template <class U> struct ST
{
...
};
template <class U, class V>
struct ST<U V::*>
{
...
};

我假设第二个模板是第一个模板的特化。

但是 U V::* 的语义是什么???

最佳答案

这意味着“指向类 V 成员的指针,其中成员的类型是 U”。例如,

struct X
{
int x = 0;
};

// ...

int X::*p = &X::x; // <== Declares p as pointer-to-member

ST<decltype(&X::x)> s; // <== Will instantiate your template specialization,
// with U = int and V = X

ST<int X::*> t; // <== Will instantiate your template specialization,
// with U = int and V = X

关于c++ - 具有范围限定符的模板语法的含义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15799075/

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