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

admin2020-11-11  23

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

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

答案B

解析 this指针是成员函数所属对象的指针,它指向类对象的地址。成员函数通过这个指针知道自己属于哪一个对象。this指针是一个隐含的指针,它隐含于每个类的非静态成员函数中,它明确的地表示出了成员函数当前操作的数据所属的对象。
转载请注明原文地址:https://kaotiyun.com/show/qlyp777K
0

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