2
모듈 인터페이스에서 인라인 의미
헤더 파일을 고려하십시오. class T { private: int const ID; public: explicit T(int const ID_) noexcept : ID(ID_) {} int GetID() const noexcept { return ID; } }; 또는 대안 적으로 : class T { private: int const ID; public: explicit T(int const ID_) noexcept; int GetID() const noexcept; }; …