What does string::npos mean in this code?

后端 未结 12 1264
傲寒
傲寒 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:14

    string::npos is a constant (probably -1) representing a non-position. It's returned by method find when the pattern was not found.

提交回复
热议问题