如何在 cocos2d-x 3.17v 中创建字符串数组

How to Create a string array in cocos2d-x 3.17v

我是新手 Cocos2d-x 我正在使用 3.17v 我遇到了一些问题 我无法在 cocos2dx 中创建字符串 我想创建一个字符串数组来存储精灵文件名

String* cars[5];

我试过了,它不起作用,并且出现错误

类型 'String' 已弃用

我建议您开始使用标准类型,例如 std::string, and not cocos2d::String. Also, for arrays, you can use std::vector

std::vector 允许您添加特定类型的对象,包括重复对象。

std::vector<std::string> stringVector;
stringVector.push_back("my string");

construct/initialise/use std::stringstd::vector 对象有多种方法,但您可以在互联网上或我上面提供的文档链接中轻松找到相关信息.