fork download
  1. #include <type_traits>
  2.  
  3. template <typename T, typename TMethod>
  4. class has_bar_method
  5. {
  6. private:
  7. struct yes { char _; };
  8. struct no { char _[2]; };
  9. template <typename U, TMethod = &U::Bar>
  10. static yes impl(U*);
  11. static no impl(...);
  12.  
  13. public:
  14. enum { value = sizeof(impl(static_cast<T*>(nullptr))) == sizeof(yes) };
  15. };
  16.  
  17. template <class T>
  18. class A
  19. {
  20. private:
  21.  
  22. public:
  23. void Foo(T& b)
  24. {
  25. static_assert(has_bar_method<T, void (T::*)(float)>::value, "T has method void Bar(float)");
  26.  
  27. b.Bar(0.5);
  28. }
  29. };
  30.  
  31. class B
  32. {
  33. public:
  34. //void Bar(float) {}
  35. void Bar(double) {}
  36. void Bar(int) {}
  37. };
  38.  
  39. int main() {
  40. A<B> a;
  41. B b;
  42.  
  43. a.Foo(b);
  44.  
  45. return 0;
  46. }
Compilation error #stdin compilation error #stdout 0s 3292KB
stdin
Standard input is empty
compilation info
prog.cpp: In instantiation of ‘void A<T>::Foo(T&) [with T = B]’:
prog.cpp:43:9:   required from here
prog.cpp:25:8: error: static assertion failed: T has method void Bar(float)
        static_assert(has_bar_method<T, void (T::*)(float)>::value, "T has method void Bar(float)");
        ^
stdout
Standard output is empty