gpt4 book ai didi

c++ - 如何在数组对象中传递参数?在 C++ 中

转载 作者:行者123 更新时间:2023-12-03 10:04:39 25 4
gpt4 key购买 nike

class A
{
int id;
public:
A (int i) { id = i; }
void show() { cout << id << endl; }
};
int main()
{
A a[2];
a[0].show();
a[1].show();
return 0;
}
我收到一个错误,因为没有默认构造函数。但这不是我的问题。有没有办法在定义时发送参数
A a[2];

最佳答案

一种好的做法是将构造函数声明为显式(除非它定义了转换),尤其是当您只有一个参数时。然后,您可以创建新对象并将它们添加到您的数组中,如下所示:

#include <iostream>
#include <string>

class A {
int id;
public:
explicit A (int i) { id = i; }
void show() { std::cout << id << std::endl; }
};

int main() {
A first(3);
A second(4);
A a[2] = {first, second};
a[0].show();
a[1].show();
return 0;
}
但是,更好的方法是使用 vector (比如在一周内您希望数组中有 4 个对象,或者根据输入需要 n 个对象)。你可以这样做:
#include <iostream>
#include <string>
#include <vector>

class A {
int id;
public:
explicit A (int i) { id = i; }
void show() { std::cout << id << std::endl; }
};

int main() {

std::vector<A> a;
int n = 0;
std::cin >> n;
for (int i = 0; i < n; i++) {
A temp(i); // or any other number you want your objects to initiate them.
a.push_back(temp);
a[i].show();
}
return 0;
}

关于c++ - 如何在数组对象中传递参数?在 C++ 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65554555/

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