摘要: c++异常处理 int main(){ try { throw 1; } catch ( int e ) { printf("catch int\r\n"); } catch ( float e) { printf("catch float\r\n"); } } 函数开始,注册异常处理函数 008C 阅读全文
posted @ 2020-01-19 21:19 DirWangK 阅读(1648) 评论(0) 推荐(0) 编辑