C++ 异常类型 #include <iostream>#include <string.h>/** * */using namespace std;class Myexception{public: Myexception(char* str){ error=new char[strlen(str)+1]; strcpy(error... Other 2023-09-17 166 点赞 2 评论 251 浏览