摘要: 1 #include <iostream> 2 using namespace std; 3 class DataType 4 { 5 public: 6 DataType(int i) 7 { 8 data.i = i; 9 type = INT; 10 } 11 DataType(char c) 阅读全文
posted @ 2023-04-24 22:31 Code13 阅读(49) 评论(0) 推荐(0) 编辑