标准 C++ 包含多个 内置 异常类。 typeinfo::bad_cast 就是其中之一。这是动态转换失败时抛出的异常。以下是相同的语法:
头文件:
<typeinfo>
用法:
class bad_cast;
注意:要使用 std::bad_cast,应该设置适当的 try 和 catch 块。
返回值:它不返回任何东西。
以下是更好地理解 std::bad_cast 实现的示例:
程序1:
// C++ code for std::bad_cast
#include <bits/stdc++.h>
#include <typeinfo>
using namespace std;
// Base Class
class Base {
virtual void member() {}
};
// Derived Class
class Derived:Base {
};
// main() method
int main()
{
// try block
try {
Base gfg;
Derived& rd
= dynamic_cast<Derived&>(gfg);
}
// catch block to handle the errors
catch (bad_cast& bc) {
cerr << "bad_cast caught:"
<< bc.what() << endl;
}
return 0;
}
输出:
bad_cast caught:std::bad_cast
程序2:
// C++ code for std::bad_cast
#include <bits/stdc++.h>
#include <typeinfo>
using namespace std;
// Base Class
class Base {
virtual void member() {}
};
// Derived Class
class Derived:Base {
};
// main() method
int main()
{
// try block
try {
Base geeksforgeeks;
Derived& abc
= dynamic_cast<Derived&>(
geeksforgeeks);
}
// catch block to handle the errors
catch (bad_cast& a) {
cerr << "bad_cast caught:"
<< a.what() << endl;
}
return 0;
}
输出:
bad_cast caught:std::bad_cast
参考:http://www.cplusplus.com/reference/typeinfo/bad_cast/
相关用法
- C语言 strtok()、strtok_r()用法及代码示例
- C++ std::mismatch()用法及代码示例
- C++ wcscpy()用法及代码示例
- C++ wcscmp()用法及代码示例
- C++ ratio_equal()用法及代码示例
- C++ quick_exit()用法及代码示例
- C++ multiset lower_bound()用法及代码示例
- C++ multiset upper_bound()用法及代码示例
- C++ multiset max_size()用法及代码示例
- C++ forward_list max_size()用法及代码示例
- C++ std::allocator()用法及代码示例
- C++ array data()用法及代码示例
- C++ multiset size()用法及代码示例
- C++ ratio_not_equal()用法及代码示例
- C++ std::bit_or用法及代码示例
- C++ iswprint()用法及代码示例
- C++ iswgraph()用法及代码示例
- C++ btowc()用法及代码示例
- C++ mbrtoc16()用法及代码示例
- C++ mbrtoc32()用法及代码示例
- C++ wmemset()用法及代码示例
注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 typeinfo::bad_cast in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。