0
// a.h
strcut A
{
void simpleMethod();
void anotherMethod() {...; simpleMethod(); ...;}
};
// a.cpp
#include "a.h"
void A::simpleMethod() { one_line_simple_implementation; }
我的問題是:simpleMethod()
在anotherMethod()
由現代編譯器的優化內聯?