gpt4 book ai didi

c++ - 静态 constexpr 成员存储

转载 作者:行者123 更新时间:2023-11-30 05:24:26 24 4
gpt4 key购买 nike

<分区>

如果我这样写一个 trait,

template <typename T>
struct is_int {
static constexpr bool value = false;
};

template <>
struct is_int<int> {
static constexpr bool value = true;
};

是程序运行时实际存储在内存中的吗?例如,如果我在一百万种不同的类型上使用这个特征,程序是否使用 1 MB 的内存来存储这些值?

换句话说,使用还有什么好处吗

template <typename T>
struct is_int {
enum { value = 0; }
};

template <>
struct is_int<int> {
enum { value = 1; }
};

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