C++ - std::string::npos (npos의 의미)

npos

npos : size_type 으로 정의된 특수값
-1 값으로 정의

static const size_type npos = -1;  

string :: npos는 -1 값을 가지는 상수
find() 함수에 의해서 found 되지 못하는 경우 npos값이 리턴

  • find() 함수 return value
    Position of the first character of the found substring or npos if no such substring is found.

RPC Message procedure

Remote Procedure Call - Stateful Continue reading

PubSub architecture

Published on August 10, 2023

RESTful architecture

Published on August 09, 2023