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

admin2010-05-15  22

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

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

答案B

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

随机试题
最新回复(0)