摘要: #include <stdio.h> #include <stdlib.h> class Temp { public: Temp() { printf("%s:构造函数\n", __FUNCTION__); } ~Temp() { printf("%s:析构函数\n", __FUNCTION__); 阅读全文
posted @ 2023-02-27 10:24 一夜梦想 阅读(8) 评论(0) 推荐(0) 编辑