码迷,mamicode.com
首页 > 编程语言 > 详细

返回数组指针的函数

时间:2021-06-13 09:52:53      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:style   code   ios   delete   names   return   cout   main   turn   

#include <iostream>
using namespace std;
double* aaa()
{
    double tmp[3] = { 1.01,2.02,3.03 };
    double* tmp1 = new double[3];
    for (size_t i = 0; i < 3; i++) tmp1[i] = tmp[i];
    return tmp1;
}


int main()
{
    double* a = new double[3];
    a = aaa();
    for (size_t i = 0; i < 3; i++)
    {
        cout << *(a + i) << endl;
    }
    delete[]a;
    system("pause");
}

运行结果:

1.01
2.02
3.03
请按任意键继续. . .

返回数组指针的函数

标签:style   code   ios   delete   names   return   cout   main   turn   

原文地址:https://www.cnblogs.com/liuxiaoqing1/p/14877747.html

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