What does string::npos mean in this code?

后端 未结 12 1172
傲寒
傲寒 2020-11-30 18:50

What does the phrase std::string::npos mean in the following snippet of code?

found = str.find(str2);

if (found != std::string::npos)
    std::         


        
12条回答
  •  有刺的猬
    2020-11-30 19:24

    Value of string::npos is 18446744073709551615. Its a value returned if there is no string found.

提交回复
热议问题