动态申请内存操作符: newnew 类型名T(初始化参数列表)功能: 在程序执行期间,申请用于存放T类型对象的内存空间,并依初值列表赋以初值。结果: 如果成功,则返回T类型的指针,指向新分配的内存;如果失败,则抛...
动态申请内存操作符: new
new 类型名T(初始化参数列表)
功能: 在程序执行期间,申请用于存放T类型对象的内存空间,并依初值列表赋以初值。
结果: 如果成功,则返回T类型的指针,指向新分配的内存;如果失败,则抛出异常。
释放内存操作符delete
delete 指针p
功能: 释放指针p所指向的内存。p必须是new操作的返回值。
动态创建对象举例
#include <iostream>
using namespace std;
class Point {
public:
Point() : x(0), y(0) {
cout<<"Default Constructor called."<<endl;
}
Point(int x, int y) : x(x), y(y) {
cout<< "Constructor called."<<endl;
}
~Point() { cout<<"Destructor called."<<endl; }
int getX() const { return x; }
int getY() const { return y; }
void move(int newX, int newY) {
x = newX;
y = newY;
}
private:
int x, y;
};
int main() {
cout << "Step one: " << endl;
Point *ptr1 = new Point; //调用默认构造函数
delete ptr1; //删除对象,自动调用析构函数
cout << "Step two: " << endl;
ptr1 = new Point(1,2);
delete ptr1;
return 0;
}
- 点赞
- 收藏
- 分享
-
- 文章举报
沃梦达教程
本文标题为:C++之动态内存分配
基础教程推荐
猜你喜欢
- C++中的atoi 函数简介 2023-01-05
- C语言 structural body结构体详解用法 2022-12-06
- C/C++编程中const的使用详解 2023-03-26
- 一文带你了解C++中的字符替换方法 2023-07-20
- C利用语言实现数据结构之队列 2022-11-22
- 详解c# Emit技术 2023-03-25
- C++使用easyX库实现三星环绕效果流程详解 2023-06-26
- 如何C++使用模板特化功能 2023-03-05
- C++详细实现完整图书管理功能 2023-04-04
- C语言基础全局变量与局部变量教程详解 2022-12-31