What is SFINAE in C++?
Can you please explain it in words understandable to a programmer who is not versed in C++? Also, what concept in a language like Python does SFINAE correspond to?
|
What is SFINAE in C++? Can you please explain it in words understandable to a programmer who is not versed in C++? Also, what concept in a language like Python does SFINAE correspond to? |
|||||||||||
|
|
Warning: this is a really long explanation, but hopefully it really explains not only what SFINAE does, but gives some idea of when and why you might use it. Okay, to explain this we probably need to back up and explain templates a bit. As we all know, Python uses what's commonly referred to as duck typing -- for example, when you invoke a function, you can pass an object X to that function as long as X provides all the operations used by the function. In C++, a normal (non-template) function requires that you specify the type of a parameter. If you defined a function like:
You can only apply that function to an To get something closer to Python's duck typing, you can create a template instead:
Now our Now, consider, for example, that we want to write some objects out to a stream. Unfortunately, some of those objects get written to a stream using
That's fine for one type, and if we wanted to badly enough we could add more specializations for all the types that don't support What we want is a way to use the first specialization for any object that supports We can use SFINAE to make that determination. To do that, we typically rely on a couple of other oddball details of C++. One is to use the
I can use The second interesting item that's frequently used is the fact that the size of an array must to be positive, not zero. Now, putting those together, we can do something like this:
Here we have two overloads of That then gets used in the The result is that |
|||||||||||||||||||||
|
|
If you have some overloaded template functions, some of the possible candidates for use may fail to be compilable when template substitution is performed, because the thing being substituted may not have the correct behaviour. This is not considered to be a programming error, the failed templates are simply removed from the set available for that particular parameter. I have no idea if Python has a similar feature, and don't really see why a non-C++ programmer should care about this feature. But if you want to learn more about templates, the best book on them is C++ Templates: The Complete Guide. |
|||||||||||||||||||
|
|
SFINAE is a principle a C++ compiler uses to filter out some templated function overloads during overload resolution (1) When the compiler resolves a particular function call, it considers a set of available function and function template declarations to find out which one will be used. Basically, there are two mechanisms to do it. One can be described as syntactic. Given declarations:
resolving The reason we want this is obvious - we may want to do slightly different things for different types (eg. an absolute value of a complex is computed by If you have done some declarative programming before, this mechanism is similar to (Haskell):
The way C++ takes this further is that the deduction may fail even when the deduced types are OK, but back substitution into the other yield some "nonsensical" result (more on that later). For example:
when deducing
In the end, if more than one function overload remains, the compiler uses conversion sequences comparison and partial ordering of templates to select one that is the "best". There are more such "nonsensical" results that work like this, they are enumerated in a list in the standard (C++03). In C++0x, the realm of SFINAE is extended to almost any type error. I won't write an extensive list of SFINAE errors, but some of the most popular are:
This mechanism is not similar to anything in other programming languages I know of. If you were to do a similar thing in Haskell, you'd use guards which are more powerful, but impossible in C++. 1: or partial template specializations when talking about class templates |
|||
|
|
Python won't help you at all. But you do say you're already basically familiar with templates. The most fundamental SFINAE construct is usage of
In SFINAE, there is some structure which sets up an error condition ( What kinds of errors are acceptable is a major detail which has only recently been standardized, but you don't seem to be asking about that. |
|||||
|
|
There is nothing in Python that remotely resembles SFINAE. Python has no templates, and certainly no parameter-based function resolution as occurs when resolving template specialisations. Function lookup is done purely by name in Python. |
|||
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.