📄 list0809.cpp
字号:
// Listing 8.9 - Demonstrates a stray pointer
typedef unsigned short int USHORT;
#include <iostream>
int main()
{
USHORT * pInt = new USHORT;
*pInt = 10;
std::cout << "*pInt: " << *pInt << std::endl;
delete pInt;
long * pLong = new long;
*pLong = 90000;
std::cout << "*pLong: " << *pLong << std::endl;
*pInt = 20; // uh oh, this was deleted!
std::cout << "*pInt: " << *pInt << std::endl;
std::cout << "*pLong: " << *pLong << std::endl;
delete pLong;
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -