摘要:
对象的动态内存分配 Spread{ int ** arr = new int*[10]; for(int i=0;i<10;i++) { arr[i] = new int[10]; } // 析构 for(auto i=0;i<10;i++) { delete[] arr[i]; } delete[ 阅读全文
摘要:
动态字符串 C++中定义一些来自c语言的字符串函数,在头文件中。通常,这些函数不直接操作内存分配。 strlen(str)返回字符串长度,不包括\0 使用安全C库: strlen_s 也在 中 C++的string类 #include <string> using namespace std; co 阅读全文
摘要:
枚举 enum CarType { CarTypeLit, CarTypeMiddle, CarTypeLitBig }; CarType type = CarTypeMiddle; cout << type << endl; // 强类型枚举 强类型枚举 enum class CarType2 { 阅读全文