01 2021 档案

摘要:1.new[],delete[] 创建,释放内存块 new,delete 创建,释放单个元素 2.const: 1)指针包含地址是常量,不能修改,但是能修改指针指向的数据: int daysInMonth = 30; int* const pDaysInMonth = &daysInMonth; * 阅读全文
posted @ 2021-01-31 22:54 宋隐 阅读(64) 评论(0) 推荐(0)
摘要:#include <iostream>using namespace std; const double pi = 3.14159;//double Area(double radius)//{// double result = 0;// return result = pi * radius * 阅读全文
posted @ 2021-01-31 21:00 宋隐 阅读(111) 评论(0) 推荐(0)