例えば
// a.h
strcut A
{
void simpleMethod();
void anotherMethod() {...; simpleMethod(); ...;}
};
// a.cpp
#include "a.h"
void A::simpleMethod() { one_line_simple_implementation; }
私の質問は次のとおりです。最新のコンパイラ最適化によってsimpleMethod()
インライン化できますか?anotherMethod()