// // Created by light on 19-12-28. // #include using namespace std; // 使用template实现IF条件判断 template struct IF; template struct IF { typedef Then result; }; template struct IF { typedef Else result; }; // 判断奇数与偶数 template struct isEven { static const auto RES = IF::result::value; }; template struct Add_ { static const int value = nums1 + nums2; }; template struct Sub_ { static const int value = nums1 - nums2; }; // 加减 template struct addSub { static const auto RES = IF, Sub_>::result::value; }; int main() { cout << isEven<10>::RES << endl; cout << addSub::RES << endl; }