函数签名的const函数签名

时间:2013-03-14 14:46:04

标签: c++ function const typedef signature

typedef void fv();
typedef std::add_const<fv>::type fvc;

typedef void fv_const() const;
static_assert(std::is_same<fvc,fv_const>::value,"Oops");

这不会编译,因为fvcfv_const的类型不同。

是否可以从fvc派生fv类型,使其等于fv_const

1 个答案:

答案 0 :(得分:0)

const添加到非成员函数签名没有多大意义,但您可以这样做:

template<class T> struct add_f_const;
template<class R, class...Args>
struct add_f_const<R (Args...)> { typedef R type(Args...) const; };

static_assert(std::is_same<add_f_const<void()>::type, void() const>::value, "Oops");

const添加到成员函数更为常见:

template<class T> struct add_member_const;
template<class T, class R, class...Args>
struct add_member_const<R (T::*)(Args...)> { using type = R (T::*)(Args...) const; };

struct test {};
static_assert(std::is_same<add_member_const<void (test::*)()>::type,
  void (test::*)() const>::value,  "Oops");