有没有办法使部分专业化始终优于主要模板?

发布于 2024-12-09 17:03:10 字数 289 浏览 0 评论 0原文

我问自己

您能否编写一个类模板和相应的部分特化,以便对于参数的任何模板实参集,编译器都会采用部分特化?

例如,

template<typename T>
struct A { };

template<typename T>
struct A</* what to write!?*/> { };

我似乎记得读过这在某种程度上是可能的,但我忘记了实现这项工作的确切算法。

I'm asking myself

Can you write a class template and a corresponding partial specialization such that for any set of template arguments for the parameters, the partial specialization is taken by the compiler?

For example

template<typename T>
struct A { };

template<typename T>
struct A</* what to write!?*/> { };

I seem to remember having read that this is possible somehow, but I forgot the exact algorithm to make this work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柠檬色的秋千 2024-12-16 17:03:10

我的 GCC 版本很乐意接受:

template<typename T>
struct A;

template<typename... Pack>
struct A<Pack...> {};

My version of GCC is happy to accept:

template<typename T>
struct A;

template<typename... Pack>
struct A<Pack...> {};
枫以 2024-12-16 17:03:10

如果您允许 SFINAE 技巧,那么它将像这样简单:

enum E { TRUE };

template<typename T, E = TRUE>
struct A
{
  static const bool value = false;
};

template<typename T>
struct A<T, TRUE>
{
  static const bool value = true;
};

演示

If you allow SFINAE trick then, it will be as easy as this:

enum E { TRUE };

template<typename T, E = TRUE>
struct A
{
  static const bool value = false;
};

template<typename T>
struct A<T, TRUE>
{
  static const bool value = true;
};

Demo.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文