鱼C论坛

 找回密码
 立即注册
查看: 1521|回复: 0

[技术交流] (C++奇技淫巧)如何在编译期间检测两个类型之间是否能进行某种运算。

[复制链接]
发表于 2020-1-16 17:16:50 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 Croper 于 2020-1-16 17:33 编辑

翻了半天的boost库总结出来的,把hana::is_valid翻写了一个容易理解点的版本:
以“==”操作为例:
using namespace std;
template <typename T1,typename T2>
struct CanEqual{
private:
        template <typename =decltype(declval<T1>()==declval<T2>())>
        constexpr static auto answer(int) { return true; };
        constexpr static auto answer(...) { return false; };
public:
        constexpr operator bool(){
                return answer(0);
        }
};
测试:
struct Test1 {};  //没有任何转换函数

struct Test2 {
        bool operator==(int) const; //能够与int进行==操作
};


int main() {
        constexpr bool a = CanEqual<int, int>();  //true
        constexpr bool b = CanEqual<double, int>();//true
        constexpr bool c = CanEqual<string, int>();//false
        constexpr bool d = CanEqual<Test1, int>();//false
        constexpr bool e = CanEqual<Test2, int>();//true
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-16 07:49

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表