什么是C中的:: *

前端之家收集整理的这篇文章主要介绍了什么是C中的:: *前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我面对时,我正在阅读一本基本的C教程
::*

在以下代码中.我可以知道那是什么:

class A {
public:
protected:
  int i;
};


class B : public A {
  friend void f(A*,B*);
  void g(A*);
};

void f(A* pa,B* pb) {
//  pa->i = 1;
  pb->i = 2;

//  int A::* point_i = &A::i;
  int A::* point_i2 = &B::i;
}

void B::g(A* pa) {
//  pa->i = 1;
  i = 2;

//  int A::* point_i = &A::i;
  int A::* point_i2 = &B::i;
}

void h(A* pa,B* pb) {
//  pa->i = 1;
//  pb->i = 2;
}

int main() { }

根据我的C知识到目前为止,我无法理解类似的东西

int A::* point_i2

你能救我吗?

谢谢.

解决方法

point_i2是指向成员的指针.这意味着它指向在类A中声明的int成员变量.
原文链接:https://www.f2er.com/c/110835.html

猜你在找的C&C++相关文章