Bibliothèque C ++ Type_info - opérateur! = Fonction

La description

Il renvoie si les types identifiés par deux objets type_info ne sont pas les mêmes.

Déclaration

Voici la déclaration pour std :: type_info :: operator! =

C ++ 98

bool operator!= (const type_info& rhs) const;

C ++ 11

bool operator!= (const type_info& rhs) const noexcept;

Paramètres

rhs - Il identifie le type d'objet.

Valeur de retour

Il renvoie si les types identifiés par deux objets type_info ne sont pas les mêmes.

Exceptions

No-throw guarantee - cette fonction membre ne lève jamais d'exceptions.

Courses de données

L'objet locale est modifié.

Exemple

Dans l'exemple ci-dessous pour std :: type_info :: operator! =.

#include <iostream>
#include <typeinfo>
#include <string>
#include <utility>
 
class person {
   public:

      person(std::string&& n) : _name(n) {}
      virtual const std::string& name() const{ return _name; }

   private:

      std::string _name;
};

class employee : public person {
   public:

      employee(std::string&& n, std::string&& p) :
         person(std::move(n)), _profession(std::move(p)) {}

      const std::string& profession() const { return _profession; }

   private:

      std::string _profession;
};

void somefunc(const person& p) {
   if(typeid(employee) == typeid(p)) {
      std::cout << p.name() << " is an employee ";
      auto& emp = dynamic_cast<const employee&&gt;(p);
      std::cout << "who works in " << emp.profession() << '\n';
   }
}

int main() {
   employee paul("sairamkrishna","tutorialspoint");
   somefunc(paul);
}

La sortie devrait être comme ça -

sairamkrishna is an employee who works in tutorialspoint