gpt4 book ai didi

c++ - `type` 和 `const type` 的类型特征

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:09:32 25 4
gpt4 key购买 nike

我需要某种类型特征:

template<typename T> struct foo {};
template<>
struct foo<char> { static constexpr char c = 'c' };

如果我需要一个类型为 char 的字符 c,这将非常有效,但在以下情况下则不行:

printf("%c", foo<const char>::c);

有没有更优雅的方法来做到这一点,而不是以相同的方式为 charconst char 指定模板?

最佳答案

添加部分特化:

template <class T> struct foo<const T> : foo<T> {};

关于c++ - `type` 和 `const type` 的类型特征,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41087788/

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