当前位置 : 主页 > 编程语言 > c++ >

模板化C函数,第一个参数设置为第二个参数作为默认参数

来源:互联网 收集:自由互联 发布时间:2021-06-23
我有这样的功能: template typename A, typename Bvoid foo(const B b){ ...} A应该是可选的;如果没有在函数调用中明确定义,则应将其设置为B.目的是避免不必要的详细代码: int i;// First variant: A is
我有这样的功能:

template <typename A, typename B>
void foo(const B & b)
{
    ...
}

A应该是可选的;如果没有在函数调用中明确定义,则应将其设置为B.目的是避免不必要的详细代码:

int i;

// First variant: A is specified explicitly
foo<float>(i);

// Second variant: A is set to B implicitly
// This is because foo < int > (i) is unnecessarily verbose
foo(i);

但是,我还没有办法做到这一点.任何人都能想出一个吗?

#include <type_traits>

struct deduce_tag;

template <typename PreA = deduce_tag, typename B>
void foo(const B & b) {
    using A = std::conditional_t<
        std::is_same<PreA, deduce_tag>::value,
        B,
        PreA
    >;
}
网友评论