摘要: 1 #pragma once 2 #include <initializer_list> 3 struct String { 4 String(const char*s) { 5 c_str = new char[strlen(s)+1]; 6 while (*s) { 7 *(c_str+sz) 阅读全文
posted @ 2020-10-17 20:50 世界を変える御宅族 阅读(123) 评论(0) 推荐(0) 编辑