为简化测试用例,假设我有以下包装类:
template <typename T>
struct Wrapper {
decltype(auto) operator()() const {
return m_t();
}
decltype(auto) operator()() {
return m_t();
}
T m_t;
};
template <typename T>
auto make_wrapper(T t) {
return Wrapper<T>{t};
}
让我们说我正在包装以下琐碎的仿函数返回引用:
struct Foo {
int& operator()() {
return x;
}
const int& operator()() const {
return x;
}
int x;
};
在我的main
函数中,我试图将Foo
仿函数包装到lambda闭包中。由于我希望它返回非const引用,我将其设置为mutable
并使用decltype(auto)
:
int main() {
Foo foo;
auto fun = [foo]() mutable -> decltype(auto) { return foo(); };
auto wfun = make_wrapper(fun);
const auto& cwfun = wfun;
wfun(); // <- OK
cwfun(); // <- BAD!
}
对于第二个电话cwfun()
,调用const
的第一个Wrapper::operator()
版本,但m_t
被视为const
lambda,因此无法调用。我想这是因为m_t
首先被标记为mutable
。那么这项工作的好方法是什么呢?将m_t
转换为非const
,然后在operator() const
中调用它?
我的目标是致电cwfun()
并致电Wrapper::operator() const
和Foo::operator() const
。我可以将Wrapper::m_t
标记为mutable
来修复编译器错误,但最终会调用Foo::operator()
而不是Foo::operator() const
。
或者,我可以在const
中添加Wrapper::operator() const
,因为我知道Foo::operator()
和Foo::operator() const
仅因其常量而异。使用类似的东西:
return const_cast<typename std::add_lvalue_reference<typename std::add_const<typename std::remove_reference<decltype(m_t())>::type>::type>::type>(m_t());
但是,那很重。
clang给出的错误消息如下:
tc-refptr.cc:8:12: error: no matching function for call to object of type 'const (lambda at
tc-refptr.cc:40:14)'
return m_t();
^~~
tc-refptr.cc:44:27: note: in instantiation of member function 'Wrapper<(lambda at
tc-refptr.cc:40:14)>::operator()' requested here
DebugType<decltype(cwfun())> df;
^
tc-refptr.cc:40:14: note: candidate function not viable: 'this' argument has type 'const
(lambda at tc-refptr.cc:40:14)', but method is not marked const
auto fun = [foo]() mutable -> decltype(auto) { return foo(); };
答案 0 :(得分:1)
首先我们从partial_apply
开始,在这种情况下,它被写成对const敏感:
template<class F, class...Args>
struct partial_apply_t {
std::tuple<Args...> args;
F f;
template<size_t...Is, class Self, class...Extra>
static auto apply( Self&& self, std::index_sequence<Is...>, Extra&&...extra )
-> decltype(
(std::forward<Self>(self).f)(
std::get<Is>(std::forward<Self>(self).args)...,
std::declval<Extra>()...
)
{
return std::forward<Self>(self).f(
std::get<Is>(std::forward<Self>(self).args)...,
std::forward<Extra>(extra)...
);
}
partial_apply_t(partial_apply_t const&)=default;
partial_apply_t(partial_apply_t&&)=default;
partial_apply_t& operator=(partial_apply_t const&)=default;
partial_apply_t& operator=(partial_apply_t&&)=default;
~partial_apply_t()=default;
template<class F0, class...Us,
class=std::enable_if_t<
std::is_convertible<std::tuple<F0, Us...>, std::tuple<F, Args...>>{}
>
>
partial_apply_t(F0&& f0, Us&&...us):
f(std::forward<F0>(f0)),
args(std::forward<Us>(us)...)
{}
// three operator() overloads. Could do more, but lazy:
template<class...Extra, class Indexes=std::index_sequence_for<Extra>>
auto operator()(Extra&&...extra)const&
-> decltype( apply( std::declval<partial_apply_t const&>(), Indexes{}, std::declval<Extra>()... ) )
{
return apply( *this, Indexes{}, std::forward<Extra>(extra)... );
}
template<class...Extra, class Indexes=std::index_sequence_for<Extra>>
auto operator()(Extra&&...extra)&
-> decltype( apply( std::declval<partial_apply_t&>(), Indexes{}, std::declval<Extra>()... ) )
{
return apply( *this, Indexes{}, std::forward<Extra>(extra)... );
}
template<class...Extra, class Indexes=std::index_sequence_for<Extra>>
auto operator()(Extra&&...extra)&&
-> decltype( apply( std::declval<partial_apply_t&&>(), Indexes{}, std::declval<Extra>()... ) )
{
return apply( std::move(*this), Indexes{}, std::forward<Extra>(extra)... );
}
};
template<class F, class... Ts>
partial_apply_t<std::decay_t<F>, std::decay_t<Ts>...>
partial_apply(F&& f, Ts&&...ts) {
return {std::forward<F>(f), std::forward<Ts>(ts)...};
}
然后我们使用它:
auto fun = partial_apply(
[](auto&& foo) -> decltype(auto) { return foo(); },
foo
);
现在foo
的副本存储在partial_apply
中,在我们调用它的时候,它会以正确的const-correctness传递给lambda。所以lambda取决于foo
的调用上下文,得到fun
的不同常量。
除了我上面可能有拼写错误的事实,它应该处理的另一件事是std::ref
之类的,所以当它扩展args
时它会将std::reference_wrapper
转换为引用。
这应该不会很难:reference_unwrapper
传递非参考包装的东西,然后展开std::reference_wrapper
。
或者,我们可以打开partial_apply
函数,而不是decay_t
。