What is wrong with using inline functions?

后端 未结 12 1281
滥情空心
滥情空心 2020-11-29 01:51

While it would be very convenient to use inline functions at some situations,

Are there any drawbacks with inline functions?

Conclusion:

12条回答
  •  孤独总比滥情好
    2020-11-29 02:11

    I don't know if my answer's related to the question but:

    Be very careful about inline virtual methods! Some buggy compilers (previous versions of Visual C++ for example) would generate inline code for virtual methods where the standard behaviour was to do nothing but go down the inheritance tree and call the appropriate method.

提交回复
热议问题