ex6_06.cpp
来自「Visual C++ 2005的源代码」· C++ 代码 · 共 26 行
CPP
26 行
// Ex6_06.cpp
#include<new> // For bad_alloc type
#include<iostream>
using std::bad_alloc;
using std::cout;
using std::endl;
int main( )
{
char* pdata = 0;
size_t count = ~static_cast<size_t>(0)/2;
try
{
pdata = new char[count];
cout << "Memory allocated." << endl;
}
catch(bad_alloc &ex)
{
cout << "Memory allocation failed." << endl
<< "The information from the exception object is: "
<< ex.what() << endl;
}
delete[] pdata;
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?