gpt4 book ai didi

c++ - 源文件中定义的方法可以内联吗?

转载 作者:行者123 更新时间:2023-11-28 07:24:08 24 4
gpt4 key购买 nike

例如

// a.h
strcut A
{
void simpleMethod();
void anotherMethod() {...; simpleMethod(); ...;}
};

// a.cpp
#include "a.h"
void A::simpleMethod() { one_line_simple_implementation; }

我的问题是:simpleMethod() 能否通过现代编译器优化内联到 anotherMethod() 中?

最佳答案

在这种情况下,是的。如果 a.cpp 包含 a.h(我想是这样)。只要编译器能看到完整的定义。没事。但你需要这么说。

inline     void A::simpleMethod() { one_line_simple_implementation; }

关于c++ - 源文件中定义的方法可以内联吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19017914/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com