假设我有以下元功能:
template <typename T>
struct make_pair {
using type = std::pair<
typename std::remove_reference<T>::type,
typename std::remove_reference<T>::type
>;
};
这样做(或其他)会提高编译速度吗?
template <typename T>
struct make_pair {
using without_reference = typename std::remove_reference<T>::type;
using type = std::pair<without_reference, without_reference>;
};
我看到两种可能性:
编译器每次看到
typename std::remove_reference<T>::type
. 使用中间别名有某种“缓存”行为,它允许编译器只做一次工作。编译时性能是根据编译器必须执行的模板实例化的数量来衡量的。因为
std::remove_reference<T>::type
与 引用相同的类型std::remove_reference<T>::type
,所以在两种情况下都只需要一个模板实例化,因此两种实现都是等效的 WRT 编译时性能。
我认为 B 是对的,但我想确定一下。如果答案是编译器特定的,我最有兴趣知道 Clang 和 GCC 的答案。
编辑:
我对测试程序的编译进行了基准测试,以便有一些数据可以使用。测试程序做这样的事情:
template <typename ...> struct result;
template <typename T>
struct with_cache {
using without_reference = typename std::remove_reference<T>::type;
using type = result<without_reference, ..., without_reference>;
};
template <typename T>
struct without_cache {
using type = result<
typename std::remove_reference<T>::type,
...,
typename std::remove_reference<T>::type
>;
{ };
using Result = with[out]_cache<int>::type;
这些是程序 10 次编译的平均时间,其中包含 10 000 个模板参数result<>
。
-------------------------
| g++ 4.8 | clang++ 3.2 |
-----------------------------------------
| with cache | 0.1628s | 0.3036s |
-----------------------------------------
| without cache | 0.1573s | 0.3785s |
-----------------------------------------
测试程序由此处提供的脚本生成。