摘要: 栈上数组 // naive: int arr[10]; memset(arr, 0, sizeof(a)); // modern: // #include <array> std::array<int, 10> arr; arr.fill(0); 堆上数组 // naive: int *arr = 阅读全文
posted @ 2016-01-20 20:47 绝不原创的飞龙 阅读(22) 评论(0) 推荐(0) 编辑