C++动态分配内存
动态分配(Dynamic Memory)内存是指在程序运行时(runtime)根据用户输入的需要来分配相应的内存空间。
1.内存分配操作符new 和 new[]
Example:
(1)给单个元素动态分配内存
int * pointer = new int; //动态分配一个用于存放整型变量的内存空间,并将该存储空间的地址返回给pointer
(2)给多个元素(数组)动态分配内存空间
int * p = new int []; //动态分配可以存放10个整型变量的内存空间,并将该存储空间的首地址返回给 p
在这里,动态创建的数组 p 的长度可以是常量,也可以是变量(用户输入的长度);而一般的数组在创建时的长度必须是常量。
2.内存收回操作符delete 和 delete[]
与上面两种情况分别对应的内存收回操作符为:
delete pointer; //收回动态分配的单个元素的内存空间
delete [] p; //收回动态分配数组的内存空间
3.Demo
#include <iostream>
using namespace std;
int main() {
char input[];
int i, n;
long * p;
cout << "How many numbers do you want to type in ? "<<endl;
cin.getline(input, );
i = atoi(input);
p = new long[i]; //根据输入的长度来动态创建内存空间
if (p == NULL) //检查所请求的内存是否成功分配
exit();
for (n = ; n < i; n++) {
cout << "Please enter number: ";
cin.getline(input, );
p[n] = atol(input);
}
cout << "You have entered: ";
for (n = ; n < i; n++) {
cout << p[n] << ", ";
}
cout << endl;
delete[] p; //回收已分配的内存空间
system("pause");
return ;
}
result:
4.关于二维数组的内存动态分配问题
(1)二维数组的动态内存分配方式:
int **p = new int *[row]; //其中row指的是二维··数组的行数
for(int i=;i<row;i++)
{
p[i]=new int [col]; //col 是二维数组的列,p 是一个指向 int 类型的指针
}
(2)删除这个二维数组分配的内存空间的方式:
for(int i=;i<row;i++)
{
delete[] p[i]; //先删除二维数组的列
}
delete[] p; //再删除二维数组的行
(3)Demo
#include<iostream>
using namespace std;
int main()
{
double **data;
int m, n;
cout << "Please input the row:" << endl;
cin >> m;
cout << "Please input the column: " << endl;
cin >> n;
data = new double*[m]; //申请行的空间
if (data == NULL) //检查内存是否分配成功
{
cout << "Could not allocate." << endl;
exit();
}
for (int i = ;i < m;i++)
{
data[i] = new double[n]; //申请列的空间
if (data[i] == NULL)
{
cout << "Could not allocate,Bye..." << endl;
exit();
}
} //申请空间结束,接下来进行初始化操作
for (int i = ;i < m;i++) //初始化数组
{
for (int j = ;j < n;j++)
{
data[i][j] = i*n + j;
}
} for (int i = ;i < m;i++) //输出数组
{
for (int j = ;j < n;j++)
{
cout << data[i][j] << " ";
}
cout << endl;
}
for (int i = ;i < m;i++) //释放动态分配的内存
delete[] data[i];
delete[] data;
system("pause");
return ;
}
C++动态分配内存的更多相关文章
- 不可或缺 Windows Native (9) - C 语言: 动态分配内存,链表,位域
[源码下载] 不可或缺 Windows Native (9) - C 语言: 动态分配内存,链表,位域 作者:webabcd 介绍不可或缺 Windows Native 之 C 语言 动态分配内存 链 ...
- c/c++动态分配内存和malloc的使用
c/c++动态分配内存 为什么需要动态分配内存 ---很好的解决的了传统数组的4个缺陷 动态内存分配举例 ---动态数组的构造 使用动态数组的优点: 1. 动态数组长度不需要事先给定: 2. ...
- 标C编程笔记day06 动态分配内存、函数指针、可变长度參数
动态分配内存:头文件 stdlib.h malloc:分配内存 calloc:分配内存,并清零 realloc:调整已分配的内存块大小 演示样例: in ...
- C&C++动态分配内存(手动分配内存)三种方式
1. malloc函数 函数原型:void *malloc(unsigned int size)函数的作用是:在内训的动态存储区开辟一个size个字节的连续空间,返回所分配区域的首字节地址. 可以看到 ...
- mfc 动态分配内存
动态内存分配new 为数组动态分配内存 为多维数组分配内存 释放内存delete malloc free 动态内存分配new int * pi; pi= new int ; 为 ...
- 【c++习题】【17/4/16】动态分配内存
#include<iostream> #include<cstring> #define N 100 using namespace std; class String{ pu ...
- 指针和动态分配内存 (不定长度数组)------新标准c++程序设计
背景: 数组的长度是定义好的,在整个程序中固定不变.c++不允许定义元素个数不确定的数组.例如: int n; int a[n]; //这种定义是不允许的 但是在实际编程中,往往会出现要处理的数据数量 ...
- 数据结构复习之C语言malloc()动态分配内存概述
#include <stdio.h> #include <malloc.h> int main(void) { ] = {, , , , }; // 计算数组元素个数 ]); ...
- C++——动态分配内存问题
class Obj { public: float score; ]; }; class Result { public: int id; ]; Obj obj[]; }; 合法,可动态分配内存给Re ...
随机推荐
- virtualenv下配置nginx uwsgi Django
1.安装virtualenv,创建虚拟环境django15 sudo apt-get install virtualenv virtualenv env source bin/active pip i ...
- POJ3349: Snowflake Snow Snowflakes(hash 表)
考察hash表: 每一个雪花都有各自的6个arm值,如果两个雪花从相同或者不同位置开始顺时针数或者逆时针数可以匹配上,那么这两个雪花就是相等的. 我们采用hash的方法,这样每次查询用时为O(1),总 ...
- Learning JavaScript Design Patterns The Module Pattern
The Module Pattern Modules Modules are an integral piece of any robust application's architecture an ...
- 解决linux redhat6下安装git的问题
今天用到linux上的git安装过程比较曲折,记录一下: 首先会报需要perl rpm -ivh git-1.7.1-14.2.x86_64.rpm warning: git-1.7.1-14.2.x ...
- ARR状态监控脚本
##################################################################################### # THIS IS SAMP ...
- 基于 OAuth 安全协议的 Java 应用编程1
原文地址:http://www.ibm.com/developerworks/cn/java/j-lo-oauth/index.html 參考博客:http://www.cnblogs.com/wan ...
- [React ] React Fundamentals: Component Lifecycle - Mounting Usage
The previous lesson introduced the React component lifecycle mounting and unmounting. In this lesson ...
- phpcms 源码分析七: 模板引擎实现
这次是逆雪寒对模板引擎实现的分析: 1 /* 函数 template函数是在global.func.php 里面定义的. 在前面的phpcms 的首页 index.php 里就见到了. 用法: inc ...
- 关于Servlet中重定向
public class Red1Servlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpSer ...
- HDU1010(bfs)
#include <stdio.h>#include <iostream>#include <string.h>#include <stdlib.h>u ...