如果字符串数组是成员函数,如何声明它的大小
我在设置数组大小时遇到问题。在我的代码中我有:
class Test {
public:
....//Functions
private:
string name[];
};
Test() {
//heres where i want to declare the size of the array
}
这可能吗?
I have a problem with setting the size of my array. In my code I have:
class Test {
public:
....//Functions
private:
string name[];
};
Test() {
//heres where i want to declare the size of the array
}
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不。但是您可以使用字符串向量:
然后在构造函数中:
向量的大小将根据您指定的字符串数量进行调整。这意味着字符串的所有内存将立即分配。您可以根据需要更改数组的大小,但没有任何规定必须这样做。因此,您可以获得使用动态分配数组的所有好处,甚至一些好处,而没有缺点。
No. But you could use a vector of strings instead:
Then in your constructor:
The vector will be sized for the number of strings you specify. This means all memory for the strings will be allocated at once. You can change the size of the array as you wish, but there's nothing saying you have to. Thus, you get all the benefits of using a dynamically allocated array, and then some, without the drawbacks.
您需要使用
new
为数组动态分配内存。像这样声明变量:
在构造函数中执行以下操作:
并在析构函数中释放内存,如下所示:
You will need to dynamically allocate memory for the array using
new
.Declare the variable like this:
And in your constructor do this:
And free the memory in the destructor like this: