StackOverflow 文档 C++ 教程 内联函数 成员内联函数 成员内联函数 Created: November-22, 2018 // header (.hpp) struct A { void i_am_inlined() { } }; struct B { void i_am_NOT_inlined(); }; // source (.cpp) void B::i_am_NOT_inlined() { } 什么是函数内联非成员内联函数定义