gpt4 book ai didi

C++ 指针传递和引用传递

转载 作者:行者123 更新时间:2023-11-27 23:01:13 25 4
gpt4 key购买 nike

#include<iostream>

using namespace std;

class A{
int *numbers[5];
public:
void assignment(int ** x){
for(int i=0;i<5;i++)
numbers[i]=x[i]; //not changing just the value of *numbers[i] but the pointer numbers[i]
}
void print(){
for(int i=0; i<5;i++)
cout<< *numbers[i]<<endl;
}
};

int main(){
int *x[5];
for(int i; i<5;i++){
x[i]= new int(i);
cout<<*x[i]<<endl;
}
cout<<endl;
A numbers;
numbers.assignment(x);
numbers.print();
return 0;
}

我的问题非常具体。我想做与上面的代码相同的事情,但不是通过指针传递函数赋值(int **)的参数来通过引用来完成。我怎样才能做到这一点?

最佳答案

使用:

void assignment(int* (&x)[5]) ...

编辑:对于“如果长度...不是标准...”的评论,您可以使用模板:

template<int N> void assignment(int* (&x)[N]) ...

编译器会自动推导出N。

关于C++ 指针传递和引用传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27449549/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com