简单的 C++比较 if 语句

发布于 2024-12-07 17:52:05 字数 519 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伴我心暖 2024-12-14 17:52:05

如果 thingArray 是字符串文字,那么它实际上是常量,您无法更改其元素的值。

If thingArray is a string literal, then it's actually constant and you can't change the value of its elements.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文