exception :: what()用于获取字符串标识异常。此函数返回一个空终止的字符序列,该序列可用于标识异常。以下是相同的语法:
头文件:
#include
句法:
virtual const char* what() const throw();
返回值:函数std :: what()返回一个空的终止字符序列,用于识别异常。
注意:要使用std :: what() ,应设置适当的try和catch块。
下面的程序可以更好地了解std :: what()的实现:
程序1:
// C++ code for exception::what()
#include
using namespace std;
struct gfg : exception {
const char* what() const noexcept
{
return "GeeksforGeeks!! "
"A Computer Science"
" Portal For Geeks";
}
};
// main method
int main()
{
// try block
try {
throw gfg();
}
// catch block to handle the errors
catch (exception& gfg1) {
cout << gfg1.what();
}
return 0;
}
输出:
GeeksforGeeks!! A Computer Science Portal For Geeks
程式2:
// C++ code for exception::what()
#include
using namespace std;
struct geeksforgeeks : exception {
const char* what() const noexcept
{
return "Hey!!";
}
};
// main method
int main()
{
// try block
try {
throw geeksforgeeks();
}
// catch block to handle the errors
catch (exception& gfg) {
cout << gfg.what();
}
return 0;
}
输出:
Hey!!
参考: http : //www.cplusplus.com/reference/exception/exception/what/
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。