gpt4 book ai didi

c++ - 编写宏

转载 作者:行者123 更新时间:2023-11-27 23:32:26 28 4
gpt4 key购买 nike

我应该如何实现一个宏来做这样的事情:
//伪代码

#define CHOOSE(X) if(X) expand to "" and if !X expand to return nullptr;

编辑

template<class SomePolicy>
struct M
{

template<class Policy = SomePolicy>
typename std::enable_if<IsThrow<Policy>::value,void>::type fnc()
{
}

template<class Policy = SomePolicy>
typename std::enable_if<!IsThrow<Policy>::value,std::nullptr_t>::type fnc()
{
return nullptr;
}
};

@All_WHO_TRIED_TO_HELP_ME 大家好,非常感谢你们无价的帮助。没有你就做不到。感谢大家。谢谢。

最佳答案

编辑部分的答案。使用表达式 return g(); 即使 g 返回 void 也是有效的事实。

template <class T> T GetDefault() { return T(); }
template <> void GetDefault<void>() { } // special case for void

和使用

return GetDefault<void>();

return GetDefault<std::nullptr_t>();

关于c++ - 编写宏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4166806/

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