悲伤的 C++ throw(…)
当在C++语言中引入异常时,引入了相应的throw(…)动态异常说明符,注释了哪些异常可以由函数抛出。比如:
// this function might throw an integer or a pointer to char, // but nothing else. void foo() throw(int, char*);
- 上一篇: 仅通过转储来排除内存泄漏
- 下一篇: 使用Java中的InputStream读取文件数据
当在C++语言中引入异常时,引入了相应的throw(…)动态异常说明符,注释了哪些异常可以由函数抛出。比如:
// this function might throw an integer or a pointer to char, // but nothing else. void foo() throw(int, char*);