gpt4 book ai didi

c++ - 奇怪的 C++ 字符串操作循环错误

转载 作者:行者123 更新时间:2023-11-28 00:54:56 25 4
gpt4 key购买 nike

我在 std::string 中搜索某些字母,所以我使用:

for (int i = 0; i < word.length; i++)
...

但是我得到了错误:

Error 2 error C3867: 'std::basic_string<_Elem,_Traits,_Alloc>::length': function call missing argument list; use '&std::basic_string<_Elem,_Traits,_Alloc>::length' to create a pointer to member

所以我把:

for (int i = 0; i < &word.length; i++)
...

然后得到错误:

Error 2 error C2276: '&' : illegal operation on bound member function expression

如何解决这个问题并搜索字符串?提前致谢。

最佳答案

您只是在 length 之后缺少了 ()

std::string::length()是一个没有参数的函数。

关于c++ - 奇怪的 C++ 字符串操作循环错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12015189/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com