gpt4 book ai didi

c++ - 将 std::endl 转换为函数指针

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:52:19 26 4
gpt4 key购买 nike

这是 How template function chooses parameter? 的后续问题

@Kerrek SB提出了以下解决方案:

Func(static_cast<std::ostream&(&)(std::ostream&)>(std::endl));

我还发现以下代码也适用于我:

Func(static_cast<std::ostream&(*)(std::ostream&)>(std::endl));

问题>哪个是首选方法?

最佳答案

我会这样做:

template<class Sig>
struct reference_to_function {};
template<class R, class... Args>
struct reference_to_function<R(Args...)> {
using type = R(&)(Args...);
};
template<class Sig>
using sig_t = typename reference_to_function<Sig>::type;

template<class Sig>
sig_t<Sig> pick_signature( sig_t<Sig> f ) { return f; }

然后:

Func( pick_signature<std::ostream&(std::ostream&)>( std::endl ) );

它明确了我想做什么,而不是 static_cast

也许制作第二个版本,它接受一个类类型和一个签名,并为方法做同样的事情。 (我不知道如何让它对方法透明地工作,我认为理论上它不能)。

关于c++ - 将 std::endl 转换为函数指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26303086/

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