21xrx.com
2024-09-20 05:42:53 Friday
登录
文章检索 我的文章 写文章
C++如何判断对象类型?
2023-06-30 14:56:32 深夜i     --     --
C++ 判断对象类型 类型检查 RTTI

在C++中,判断对象的类型是一项非常常见的操作。根据对象类型不同,我们可以进行不同的处理。下面介绍一些判断对象类型的方法。

方法一:使用typeid操作符

typeid操作符可以返回一个type_info对象,其中包含了类型信息。我们可以比较type_info对象的地址,从而判断对象的类型。

例如,假设我们有一个基类Animal和它的两个派生类Cat和Dog:


class Animal {};

class Cat : public Animal {};

class Dog : public Animal {};

我们可以使用下面的代码来判断一个Animal指针指向的对象的类型:


Animal* ptr = new Cat;

if (typeid(*ptr) == typeid(Cat))

  cout << "This is a Cat!" << endl;

else if (typeid(*ptr) == typeid(Dog))

  cout << "This is a Dog!" << endl;

else

  cout << "This is an Animal!" << endl;

delete ptr;

输出结果为“This is a Cat!”。

这种方法的缺点是,只能判断具体的类型,无法判断是否是派生类的对象。

方法二:使用dynamic_cast运算符

dynamic_cast可以将一个指针或引用转换成另一个类的指针或引用,如果转换失败则返回nullptr。我们可以根据返回值来判断对象的类型。

例如,假设我们有一个派生类指针ptr:


Cat* ptr = new Cat;

if (Dog* dptr = dynamic_cast<Dog*>(ptr))

  cout << "This is a Dog!" << endl;

else if (Cat* cptr = dynamic_cast<Cat*>(ptr))

  cout << "This is a Cat!" << endl;

else

  cout << "This is neither a Cat nor a Dog!" << endl;

delete ptr;

输出结果为“This is a Cat!”。

这种方法的优点是,可以判断是否是派生类的对象,而不仅仅是具体的类型。缺点是,需要进行类型转换,有一定的性能损失。

方法三:使用虚函数

如果在基类中定义一个虚函数,派生类可以重写此函数。我们可以通过调用此虚函数来判断对象的类型。

例如,假设我们在Animal类中定义了一个虚函数getType:


class Animal {

public:

  virtual string getType() return "Animal";

};

class Cat : public Animal {

public:

  string getType() override return "Cat";

};

class Dog : public Animal {

public:

  string getType() override return "Dog";

};

我们可以使用下面的代码来判断一个Animal指针指向的对象的类型:


Animal* ptr = new Cat;

if (ptr->getType() == "Cat")

  cout << "This is a Cat!" << endl;

else if (ptr->getType() == "Dog")

  cout << "This is a Dog!" << endl;

else

  cout << "This is an Animal!" << endl;

delete ptr;

输出结果为“This is a Cat!”。

这种方法的优点是,不需要进行类型转换,性能较好。缺点是,需要在基类中定义一个虚函数,有一定的代码复杂度。

综上所述,判断对象类型的方法有多种,具体选择哪种方法取决于具体的需求和场景。

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复