Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个类,它的一个函数内部有一个extern函数:
extern
A::foo(){ extern void fun(); fun(); }
我的问题是,除了本地之外,是否还有其他地方可以放置extern函数的声明?说,文件里面的类的decleration .h?
.h
函数声明默认是“extern”,所以你可以简单地说:
void fun(); class::foo(){ fun(); }