下列程序段中包含4个函数,其中具有隐含this指针的是( )。 int funl(); class Test{ public: int fun2(); friend int fun3(); static int fun4(); };

admin2013-10-15  24

问题 下列程序段中包含4个函数,其中具有隐含this指针的是(    )。
int funl();
class Test{
public:
  int fun2();
  friend int fun3();
  static int fun4();
};

选项 A、funl
B、fun2
C、fun3
D、fun4

答案B

解析 this指针是成员函数所属对象的指针,是指向类对象的地址,是一个隐含的指针,隐含于每个类的非静态成员函数中。fun1是外部函数,fun3是友元函数,fun4是静态成员函数,故选B。
转载请注明原文地址:https://jikaoti.com/ti/ITXiFFFM
0

相关试题推荐
随机试题
最新回复(0)