欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C++成员解除引用运算符的示例详解

程序员文章站 2022-07-05 19:56:26
下面看下成员解除引用运算符,c++允许定义指向类成员的指针,对这种指针进行声明或解除引用时,需要使用一种特殊的表示法。例:class example{private: int feet;...

下面看下成员解除引用运算符,c++允许定义指向类成员的指针,对这种指针进行声明或解除引用时,需要使用一种特殊的表示法。
例:

class example
{
private:
    int feet;
    int inches;
public:
    example();
    example(int ft);
    ~example();
    void show_in()const;
    void show_ft()const;
    void use_ptr()const;
};

如果没有具体的对象,则inches成员只是一个标签。也就是说,这个类将inches定义为一个成员标识符,但要为它分配内存。必须声明这个类的一个对象:

example ob;//现在ob.inches存在

因此,可以结合使用标识符inches和特定的对象,来引用实际的内存单元(对于成员函数,可以省略对象名,但对象被认为是指针执行对象)。
c++允许这样定义一个指向标识符inches的成员指针:

int example::*pt = &example::inchers;

这种指针与常规指针有所区别。常规指针指向特定的单元格,而pt指针并不是指向特定的内存单元,因为声明中没有指出具体的对象。指针pt指的是inches成员在任意example对象中的位置。和标识符inches一样,pt被设计与对象标识符要求使用。实际上。表达式*pt对标识符inches的角色做了假设,因此,可以使用对象标识符来指定访问的对象,使用pt指针来指定该对象的inches成员。例如:类方法可以使用下面得的代码:

int example::*pt = &example::inches;
example ob1;
example ob2;
example *pq = new example;
cout<<ob1.*pt<<endl;//ob1对象的inches成员
cout<<ob2.*pt<<endl;//ob2对象的inches成员
cout<<po->*pt<<endl;//*po对象的inches成员

其中,*和->*都是成员解除运算符,声明对象后,ob1.*pi指的将是ob1对象的inches成员,同样,pq->*pt指的是pq指向的对象的inxhes成员。
改变上述示例中使用的对象,将改变使用的inches成员。不过也可以修改pt指针本身。由于feet的类型与inches相同,因此可以将pt重新设置为指向feet成员(而不指向inches成员),这样ob1.*pt将是ob1的feet成员:

pt = &example::feet;
cout<<ob1.*pt<<endl;//*pt相当于成员名,可用标识(相同类型)其他成员

可以使用成员指针标识成员函数,其语法稍微复杂的。对于不带任何参数、返回值为void的函数,声明一个指向函数的指针:

void (*pf)();//pf 指向函数

声明指向成员函数指针时,必须指出该函数所属的类。例:

void (example::*pf)()const;//pf指向类成员函数

表明pf可用于使用example方法地方。且example::*pf必须放在括号中,可以将特定成员函数的地址赋给指针:

pf = &example::show_inches;

注意,与普通函数指针的赋值情况不同,这里必须使用地址运算符,完成赋值操作后,便可以使用一个对象来调用该成员函数:

example ob3(20);
(ob3.*pf)();//使用ob3对象调用show_feet()

必须将ob3*p放在括号中,以明确地指出,该表达式表示的是一个函数名。
由于show_feet()原型与show_inches()相同,因此也可以使用pf来访问show_feet()方法:

pf = &example::show_feet;
(ob3*pf)();//将show_feet()应用于ob3对象

例:
下面程序use_ptr()方法,使用成员指针来访问example类的数据成员和函数成员。

#include <iostream>
using namespace std;
class example
{
private:
    int feet;
    int inches;
public:
    example();
    example(int ft);
    ~example();
    void show_in()const;
    void show_ft()const;
    void use_ptr()const;
};
example::example()
{
    feet=0;
    inches=0;
}
example::example(int ft)
{
    feet=ft;
    inches=12*feet;
}
example::~example()
{
}
void example::show_in()const
{
    cout<<inches<<"inches\n";
}
void example::show_ft()const
{
    cout<<feet<<"feet\n";
}
void example::use_ptr()const
{
    example yard(3);
    int example::*pt;
    pt=&example::inches;
    cout<<"set pt to &example::inches:\n";
    cout<<"this->pt:"<<this->*pt<<endl;
    cout<<"yard.*pt:"<<yard.*pt<<endl;
    pt=&example::feet;
    cout<<"set pt to &example::inches:\n";
    cout<<"this->pt:"<<this->*pt<<endl;
    cout<<"yard.*pt:"<<yard.*pt<<endl;
    void (example::*pf)()const;
    pf=&example::show_in;
    cout<<"set pf to &example::show_in:\n";
    cout<<"using (this->*pf)():";
    (this->*pf)();
    cout<<"using (yard.*pf)():";
    (yard.*pf);
}
int main()
{
    example car(15);
    example van(20);
    example garage;
    cout<<"car.usr_ptr() output:\n";
    car.use_ptr();
    cout<<"\nvan.use_ptr()outptr:\n";
    van.use_ptr();
    return 0;
}

本例子在编译期间给指针赋值,在更为复杂的类中,可以使用指向数据成员和方法的成员指针。以便在运行阶段确定与指针关联的成员。

C++成员解除引用运算符的示例详解

到此这篇关于c++成员解除引用运算符的示例详解的文章就介绍到这了,更多相关c++解除引用运算符内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: C++ 引用运算符