我有一个输入字符串,我想找到字符串中有多少个空格。
这是我的代码
// input string
std::string str = "abc d e f";
// convert string to cstring
char* cstr = new char[str.length()+1];
std::strcpy(cstr, str.c_str());
// iterate through the cstring and count how many spaces are there
int num_of_spaces = 0;
char* ptr = cstr;
while (ptr) {
if (*ptr == ' ') {
++num_of_spaces;
}
++ptr;
}
但是,我在if (*ptr == ' ')
行上收到一条错误消息:Thread 1: EXC_BAD_ACCESS (code = 1, address=0x100200000)
不是*ptr
char类型值,因为ptr
是char*
指针,我将其解除引用到*ptr
。如果是这样,为什么比较无效?
答案 0 :(得分:5)
你不想要while (ptr)
,你想要while (*ptr)
,也就是说ptr
指向的东西不是零字符,标志着一个结束C风格的字符串。