作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将字符串拆分为单个字符的数组。但是,我希望用户输入字符串,为此我需要使用变量定义字符串。
我的问题是,为什么会这样:
#include <iostream>
using namespace std;
int main() {
char arr [] = {"Giraffe"};
cout << arr[0];
return 0;
}
#include <iostream>
using namespace std;
int main() {
string word;
word = "Giraffe";
char arr [] = {word};
cout << arr[0];
return 0;
}
最佳答案
你的例子不起作用,因为你试图把 std::string
到 char
的数组中.编译器会在这里报错,因为 std::string
没有到 char
的类型转换.
由于您只是尝试打印字符串的第一个字符,因此只需使用数组访问器重载 std::string
, std::string::operator[]
反而:
std::string word;
word = "Giraffe";
std::cout << word[0] << std::endl;
关于c++ - 使用字符串的变量将字符串拆分为字符数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53861917/
我是一名优秀的程序员,十分优秀!