码迷,mamicode.com
首页 > 其他好文 > 详细

new delete

时间:2017-04-26 23:43:07      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:tchar   let   getch   []   person   main   on()   str   this   

#include <stdio.h>
#include "stdafx.h"

struct Person {
public:
    int age;
    Person()
    {
        this->age = 0;
    }
    Person(int age);
};
Person::Person(int age)
{
    this->age = age;
}


int main(int argc, char* argv[])
{
    int *i = new int;
    printf("*i: %d\n", *i);
    delete i;

    int *j = new int(5);
    printf("*j: %d\n", *j);
    delete j;

    int *k = new int[5];
    k[0] = 0;
    k[1] = 1;
    delete[] k;

    Person *p = new Person;
    printf("p->age: %d\n", p->age);
    delete p;

    Person *p1 = new Person(30);
    printf("p1->age: %d\n", p1->age);
    delete p1;


    getchar();
    return 0;
}

new delete

标签:tchar   let   getch   []   person   main   on()   str   this   

原文地址:http://www.cnblogs.com/roadmap99/p/6771547.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!