forked from ShiqiYu/CPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypeid.cpp
37 lines (29 loc) · 795 Bytes
/
typeid.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <iostream>
#include <typeinfo>
using namespace std;
class Person
{
protected:
string name;
public:
Person(string name=""):name(name){};
virtual ~Person(){}
string getInfo(){return name;}
};
class Student: public Person
{
string studentid;
public:
Student(string name="", string sid=""):Person(name),studentid(sid){};
string getInfo(){return name+":"+studentid;}
};
int main()
{
string s("hello");
cout << "typeid.name of s is " << typeid(s).name() << endl;
cout << "typeid.name of std::string is " << typeid(std::string).name() << endl;
cout << "typeid.name of Student is " << typeid(Student).name() << endl;
if(typeid(std::string) == typeid(s))
cout << "s is a std::string object." << endl;
return 0;
}