gpt4 book ai didi

c++ - 创建动态字符串数组 C++

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:04:23 27 4
gpt4 key购买 nike

我正在回答一个非常基本的问题。我想在 C++ 中动态创建一个字符串数组。

我该怎么做?

这是我的尝试:

#include <iostream>
#include <string>
int main(){
unsigned int wordsCollection = 6;
unsigned int length = 6;

std::string *collection = new std::string[wordsCollection];
for(unsigned int i = 0; i < wordsCollection; ++i){
std::cin>>wordsCollection[i];
}
return 0;
}

但它给出了以下错误

error C2109: subscript requires array or pointer type

错误是什么?

另外,如果我从 std::cin 获取用户输入的数字,我可以静态地创建该大小的数组吗?

最佳答案

使用std::vector<string>std::list<string>用手滚动它。

关于c++ - 创建动态字符串数组 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8948653/

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