⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 exception

📁 gcc编译工具没有什么特别
💻
字号:
// Exception Handling support header for -*- C++ -*-// Copyright (C) 1995, 96-97, 1998 Free Software Foundation#ifndef __EXCEPTION__#define __EXCEPTION__#pragma interface "exception"extern "C++" {namespace std {class exception {public:  exception () { }  virtual ~exception () { }  virtual const char* what () const;};class bad_exception : public exception {public:  bad_exception () { }  virtual ~bad_exception () { }};typedef void (*terminate_handler) ();typedef void (*unexpected_handler) ();terminate_handler set_terminate (terminate_handler);void terminate () __attribute__ ((__noreturn__));unexpected_handler set_unexpected (unexpected_handler);void unexpected () __attribute__ ((__noreturn__));bool uncaught_exception ();} // namespace std} // extern "C++"#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -