C&C++   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了c – 什么是“Class :: *”大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在学习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 :: *.起初我认为它是运算符*但我认为它不是真的.
请告诉我它是什么.

解决方法

int C :: *是指向类C的成员的指针,其类型为int.

例:

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 :: *”全部内容,希望文章能够帮你解决c – 什么是“Class :: *”所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:c什么