C ++関数の戻り配列関数は、配列のセットを返します。

https://blog.csdn.net/lijiayu2015/article/details/52821562

1.動的関数内のメモリを割り当て

float* add(float a[3], float b[3])
{
    float* sum=new float[3];//替换
    sum[0] = a[0] + b[0];
    sum[1] = a[1] + b[1];
    sum[2] = a[2] + b[2];
    return sum;
}

int main()
{
    float A[3] = { 1, 1, 1};
    float B[3] = { 1, 2,3};
    float *M = add(A, B);
    cout << M[0] << " " << M[1] << "  "<<M[2]<<endl;
    cout << M[0] << " " << M[1] << "  " << M[2] << endl;
    delete[] M;//增加
    system("pause");
    return 0;
}

2.パラメータを介して機能を渡し、関数の外に配列を定義し、関数内の配列を変更します

void add(float a[3], float b[3],float sum[3])
{
    sum[0] = a[0] + b[0];
    sum[1] = a[1] + b[1];
    sum[2] = a[2] + b[2];
}

int main()
{
    float A[3] = { 1, 1, 1};
    float B[3] = { 1, 2,3};
    float M[3];
    add(A, B, M);
    cout << M[0] << " " << M[1] << "  "<<M[2]<<endl;
    cout << M[0] << " " << M[1] << "  " << M[2] << endl;
    system("pause");
    return 0;
}
公開された16元の記事 ウォンの賞賛1 ビュー252

おすすめ

転載: blog.csdn.net/weixin_45366564/article/details/104117871