在编译时知道边缘条件的情况下,可以通过优化代码来省略一个调用。以下是一些建议:
#ifdef
和#endif
来实现条件编译:#ifdef KNOW_EDGE_CONDITION
// 省略调用的代码
#else
// 正常调用的代码
#endif
std::integral_constant
来实现模板元编程:template <int N>
using EdgeCondition = std::integral_constant<int, N>;
template <int N>
void foo(EdgeCondition<N>) {
// 省略调用的代码
}
template <int N>
void foo(...) {
// 正常调用的代码
}
inline
关键字来实现内联函数:inline void foo() {
// 省略调用的代码
}
void bar() {
// 正常调用的代码
foo();
}
// 静态库实现
void foo() {
// 省略调用的代码
}
// 静态库接口
extern "C" void foo();
// 主程序
#include<iostream>
extern "C" void foo();
int main() {
// 正常调用的代码
foo();
return 0;
}
通过以上方法,可以在编译时知道边缘条件的情况下省略一个调用。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云