gpt4 book ai didi

c++ - 什么是 "Class::*"

转载 作者:可可西里 更新时间:2023-11-01 18:35:41 25 4
gpt4 key购买 nike

我在学SFINAE(代入失败不算)我在网站上找到了一个例子,

template<typename T>
class is_class {
typedef char yes[1];
typedef char no [2];
template<typename C> static yes& test(int C::*); // What is C::*?
template<typename C> static no& test(...);
public:
static bool const value = sizeof(test<T>(0)) == sizeof(yes);
};

我在第 5 行发现了一个新的签名,int C::*。起初我以为它是 operator* 但我想这不是真的。请告诉我它是什么。

最佳答案

int C::* 是指向类型为 intC 成员的指针。

例子:

struct C
{
C () : a(0), b(0) {}
int a;
int b;
};

int main()
{
int C::*member1 = &C::a;
int C::*member2 = &C::b;
C c1;
c1.*member1 = 10; // Sets the value of c1.a to 10
c1.*member2 = 20; // Sets the value of c1.b to 20
}

关于c++ - 什么是 "Class::*",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30994006/

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