Chinaunix首页 | 论坛 | 博客
  • 博客访问: 127446
  • 博文数量: 11
  • 博客积分: 194
  • 博客等级: 入伍新兵
  • 技术积分: 190
  • 用 户 组: 普通用户
  • 注册时间: 2012-10-24 08:20
文章分类

全部博文(11)

文章存档

2013年(8)

2012年(3)

分类: C/C++

2013-05-02 19:00:10

该系列博文主要参考自 cppreference.com 和 cplusplus.com

由于博主水平有限,内容仅供参考

typeinfo

该头文件下有三个class,分别是type_info, bad_cast 和 bad_typeidtype_info为操作符typeid的返回类型,bad_castbad_typeid均为exception类型。


  1. namespace std {
  2.     class type_info;
  3.     class bad_cast;
  4.     class bad_typeid;
  5. }

先来介绍type_info要讲type_info不得不先来说说操作符typeid。它用于获得valuetype的类型,它的使用方法与sizeof类似,都是作用于valuetypesizeof的结果为size_t类型,而typeid的结果就为type_info类型。


  1. class type_info {
  2. public:
  3.     virtual ~type_info();
  4.     bool operator==(const type_info& rhs) const noexcept;
  5.     bool operator!=(const type_info& rhs) const noexcept;
  6.     bool before(const type_info& rhs) const noexcept;
  7.     size_t hash_code() const noexcept;
  8.     const char* name() const noexcept;
  9.     type_info(const type_info& rhs) = delete;// cannot be copied
  10.     type_info& operator=(const type_info& rhs) = delete; // cannot be copied
  11. };

constructor:不允许复制构造

deconstructor:派生对象通过指向基类的指针安全delete

operator=:不允许赋值

operator==/operator!=:判断是否相等

before:判断两个type的顺序 (这个顺序应该是规定好的,但是没找到,标准上写的是 implementations collation order

hash_code(c++11):返回类型的hash

name:返回类型名


其他两个exception较为简单

  1. class bad_cast : public exception {
  2. public:
  3.     bad_cast() noexcept;
  4.     bad_cast(const bad_cast&) noexcept;
  5.     bad_cast& operator=(const bad_cast&) noexcept;
  6.     virtual const char* what() const noexcept;
  7. };

运行无效的dynamic_cast表达式时将throw bad_cast


  1. class bad_typeid : public exception {
  2. public:
  3.     bad_typeid() noexcept;
  4.     bad_typeid(const bad_typeid&) noexcept;
  5.     bad_typeid& operator=(const bad_typeid&) noexcept;
  6.     virtual const char* what() const noexcept;
  7. };

运行无效的typeid表达式时将throw bad_typeid

阅读(1622) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~