C++之动态内存分配

动态申请内存操作符: 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;
}

  • 点赞
  • 收藏
  • 分享
    • 文章举报
北木. 发布了265 篇原创文章 · 获赞 28 · 访问量 2万+ 私信 关注

本文标题为:C++之动态内存分配

基础教程推荐