作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建一个 C++ CLR 应用程序,但由于某种原因我无法声明我的字符串数组。我正在使用命名空间系统(不太熟悉它)。
错误消息说“声明没有存储或类型说明符”
private:
string[] folderFile = null;
int selected = 0;
int begin = 0;
int end = 0;
最佳答案
要创建一个 C++ 字符串数组,语法是:
std::string folderFile[length]; // not a pointer, cannot be nullptr
要创建一个指向 C++ 字符串数组的指针,以便您可以在创建它时设置长度:
std::unique_ptr<std::string[]> folderFile; // initially nullptr
要创建(跟踪引用)CLR 字符串的(跟踪引用)CLR 数组,语法为:
array<System::String^>^ folderFile;
前两个选项只能用于C++类(class
或struct
),而最后一个只能用于CLR类(ref class
, value struct
等)。
关于c++ - NO 带有字符串数组的存储类或类型说明符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50185148/
我是一名优秀的程序员,十分优秀!