How to use new to dynamically request a two-dimensional array, and then how to use Delete to release

Source: Internet
Author: User
#define ROW 100
#define COL 200
#define T char (int,float,....)//Universal Data type
T * * * PTEMP;
*ptemp = new T[row];
for (int i = 0; i < COL i + +)
Ptemp[i] = new T[col};

Delete
for (int i =0 i < COL i + +)
Delete [] ptemp[i];
delete [][]ptemp;

Take the image as an example
Distribution:
int height = Value1;//value is used to allocate memory
int width = value2;
Lpbyte *lpimage;
Lpimage = new Lpbyte[height];
for (int i = 0; i < height; i++)
Lpimage[i] = new Byte[width]
Release:
for (int i = 0; i < height; i++)
Delete [] lpimage[i];
Delete[] Lpimage;
This should be true, but I did not allocate memory failed error handling.


Reproduced from: http://blog.sina.com.cn/s/blog_467338ba0100005o.html

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.