Namespaces
Variants
Views
Actions

std::type_info::operator==, std::type_info::operator!=

From cppreference.com
< cpp‎ | types‎ | type info
 
 
Utilities library
Language support
Type support (basic types, RTTI)
Library feature-test macros (C++20)
Dynamic memory management
Program utilities
Coroutine support (C++20)
Variadic functions
Debugging support
(C++26)
Three-way comparison
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
General utilities
Date and time
Function objects
Formatting library (C++20)
(C++11)
Relational operators (deprecated in C++20)
Integer comparison functions
(C++20)(C++20)(C++20)   
(C++20)
Swap and type operations
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
Common vocabulary types
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
Elementary string conversions
(C++17)
(C++17)

 
 
std::type_info
Member functions
type_info::operator==type_info::operator!=
(until C++20)
 
(1)
bool operator==( const type_info& rhs ) const;
(until C++11)
bool operator==( const type_info& rhs ) const noexcept;
(since C++11)
(until C++23)
constexpr bool operator==( const type_info& rhs ) const noexcept;
(since C++23)
(2)
bool operator!=( const type_info& rhs ) const;
(until C++11)
bool operator!=( const type_info& rhs ) const noexcept;
(since C++11)
(until C++20)

Checks if the objects refer to the same types.

The != operator is synthesized from operator==.

(since C++20)

Contents

[edit] Parameters

rhs - another type information object to compare to

[edit] Return value

true if the comparison operation holds true, false otherwise.

[edit] Notes

Feature-test macro Value Std Feature
__cpp_lib_constexpr_typeinfo 202106L (C++23) Constexpr for std::type_info::operator==

[edit] Example

#include <iostream>
#include <string>
#include <typeinfo>
#include <utility>
 
class person
{
public:
    explicit person(std::string n) : name_(std::move(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 print_info(const person& p)
{
    if (typeid(person) == typeid(p))
        std::cout << p.name() << " is not an employee\n";
    else if (typeid(employee) == typeid(p))
    {
        std::cout << p.name() << " is an employee ";
        auto& emp = dynamic_cast<const employee&>(p);
        std::cout << "who works in " << emp.profession() << '\n';
    }
}
 
int main()
{
    print_info(employee{"Paul","Economics"});
    print_info(person{"Kate"});
 
#if __cpp_lib_constexpr_typeinfo
    if constexpr (typeid(employee) != typeid(person)) // C++23
        std::cout << "class `employee` != class `person`\n";
#endif
}

Possible output:

Paul is an employee who works in Economics
Kate is not an employee
class `employee` != class `person`

[edit] See also

checks whether the referred type precedes referred type of another type_info
object in the implementation defined order, i.e. orders the referred types
(public member function) [edit]