Skip to content

Instantly share code, notes, and snippets.

@fenbf
Last active February 24, 2021 04:34
Show Gist options
  • Save fenbf/42795580abdee063ba0c to your computer and use it in GitHub Desktop.
Save fenbf/42795580abdee063ba0c to your computer and use it in GitHub Desktop.
template <typename T>
class HasToString
{
private:
typedef char YesType[1];
typedef char NoType[2];
template <typename C> static YesType& test( decltype(&C::ToString) ) ;
template <typename C> static NoType& test(...);
public:
enum { value = sizeof(test<T>(0)) == sizeof(YesType) };
};
@fenbf
Copy link
Author

fenbf commented Oct 10, 2019

Hi! we don't need bodies of the functions as it's used only at compile time. So we "Call" them without running the code... "0" converts to nullp pointer and that matches with the member function pointer &C::ToString. But if the ToString function is not available then we call default "NoType test(...) that matches all params.
You can also have a look at my updated post, with C++17 techniques: https://www.bfilipek.com/2019/07/detect-overload-from-chars.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment