简单的 C++比较 if 语句
我在 C++ 中有一个函数,它接受一个 char 数组 thingArray[6] 并将“ ”放在每个位置。
就像:
for (int i =0; i<5; i++)
{
thingArray[i] = ' ';
}
现在我有另一个函数,如果它在数组中找到一个空白空间,它就会粘贴一个字符。请说数组现在看起来像: 'w',' ','R','E',' ','E',
如果我这样做的话:
for (int i = 0;i<5;i++)
{
if (thingArray[i] == ' ')
{
thingArray[i] = 'M';
}
}
for 循环将遍历数组并找到' 并在其位置粘贴一个“M”。有时它不会起作用。这是我第一次使用使用指针的语言进行编码,所以我认为这可能是我的问题之一。
任何建议或更好的方法都会很棒!
谢谢。
I have a function in C++ that takes a char array thingArray[6] and places ' ' onto each place.
like:
for (int i =0; i<5; i++)
{
thingArray[i] = ' ';
}
now I have another function that sticks a character if it finds an empty space in the array. please say the array now looks like: 'w',' ','R','E',' ','E',
if I do:
for (int i = 0;i<5;i++)
{
if (thingArray[i] == ' ')
{
thingArray[i] = 'M';
}
}
It should be pretty intuitive that the for loop will traverse the array and find the ' ' and stick an 'M' in it's place. Sometimes it will not work. This is my first time coding in a language that uses pointers so I think that may be one of my issues.
Any suggestions, or a better way of doing this would be great!
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
thingArray
是字符串文字,那么它实际上是常量,您无法更改其元素的值。If
thingArray
is a string literal, then it's actually constant and you can't change the value of its elements.