Sutter’s Mill: Why Not Specialize Function Templates?

Specializing function templates is not intuitive. Herb tells you when and why not to specialize templates.


July 01, 2001
URL:http://www.drdobbs.com/sutters-mill-why-not-specialize-function/184401413

July 2001/Sutter’s Mill


The title is formed as a question, but at the same time it could serve as a statement: this article is about when and why not to specialize templates.

The Important Difference: Overloading vs. Specialization

It’s important to make sure we have the terms down pat, so here’s a quick review.

In C++, there are class templates and function templates. These two kinds of templates don’t work in exactly the same ways, and the most obvious difference is in overloading: plain old C++ classes don’t overload, so class templates don’t overload either. On the other hand, plain old C++ functions having the same name do overload, so function templates are allowed to overload too. This is pretty natural. What we have so far is summarized in Example 1:

// Example 1: Class vs. function 
// template, and overloading

// A class template
// (a)
template<class T> class X { /*...*/ };

// A function template with two 
// overloads
// (b)
template<class T> void f( T );
// (c)
template<class T> void f( int, T, double );

These unspecialized templates are also called the underlying base templates.

Further, base templates can be specialized. This is where class templates and function templates diverge further, in ways that will become important later in this article. A class template can be partially specialized and/or fully specialized [1]. A function template can only be fully specialized; but because function templates can overload, we can get nearly the same effect via overloading that we could have got via partial specialization. The following code illustrates these differences:

// Example 1, continued: Specializing 
// templates

// A partial specialization of (a) for
// pointer types
template<class T> class X<T*> 
{ /*...*/ };

// A full specialization of (a) for int
template<> class X<int> { /*...*/ };

// A separate base template that 
// overloads (b) and (c)
// — NOT a partial specialization of
// (b), because there’s no such thing 
// as a partial specialization of a
// function template!
// (d)
template<class T> void f( T* );

// A full specialization of (b) for int
// (e)
template<> void f<int>( int );

// A plain old function that happens to
// overload with (b), (c), and (d) — 
// but not (e), which we’ll discuss in 
// a moment
// (f)
void f( double );

Finally, let’s focus on function templates only and consider the overloading rules to see which ones get called in different situations. The rules are pretty simple, at least at a high level, and can be expressed as a classic two-class system:

Putting these rules together, here’s a sample of what we get:

// Example 1, continued: Overload 
// resolution
bool   b;
int    i;
double d;

f( b );         // calls (b) with 
                // T = bool
f( i, 42, d );  // calls (c) with 
                // T = int
f( &i );        // calls (d) with 
                // T = int
f( i );         // calls (e)
f( d );         // calls (f)

So far I’ve deliberately chosen simpler cases, because here’s where we step off into the deep end of the pool.

Why Not Specialize: The Dimov/Abrahams Example

Consider the following code:

// Example 2: Explicit specialization
//
template<class T>   // (a) a base 
                    // template
void f( T );

template<class T>   // (b) a second base
                    // template,
void f( T* );       //     overloads (a)
                    //     (function templates can't be
                    //     partially specialized; they
                    //     overload instead)

template<>          // (c) explicit specialization of (b),
void f<int*>(int*); //     because the signature can
                    //     match either base template
                    //     and (b) is more specialized
                    //     than (a)

// ...

int *p;
f( p );             // calls (c)

The result for the last line in Example 2 is just what you’d expect. The question of the day, however, is why you expected it. If you expected it for the wrong reason, you will be very surprised by what comes next. “So what,” someone might say, “I wrote a specialization for a pointer to int, so obviously that’s what should be called” — and that’s exactly the wrong reason.

Consider the following code, put in this form by Peter Dimov and Dave Abrahams:

// Example 3: The Dimov/Abrahams Example
//
template<class T>   // (a) same old base template as before
void f( T );

template<>          // (c) explicit specialization — of (a)!
void f<int*>(int*); //     we can only specialize something
                    //     that’s visible, after all, and
                    //     at this point there’s only one
                    //     function template named f

template<class T>   // (b) a second base template,
void f( T* );       //     overloads (a)

// ...

int *p;
f( p );             // calls (b)! overload resolution ignores
                    // specializations and operates on the base
                    // function templates only

If this surprises you, you’re not alone; it has surprised a lot of experts in its time. The key to understanding this is simple, and here it is: specializations don’t overload.

Only the base templates overload (along with non-template functions, of course). Consider again the salient part from the summary I gave above of the overload resolution rules, this time with specific words italicized:

Overload resolution only selects a base template (or a non-template function, if one is available). Only after it’s been decided which base template is going to be selected, and that choice is locked in, will the compiler look around to see if there happens to be a suitable specialization of that template available, and if so that specialization will get used.

Important Morals

If you’re like me, the first time you see this you’ll ask the question: “Hmm. But it seems to me that I went and specifically wrote a specialization for the case when the parameter is an int*, and it is an int* that is an exact match, so shouldn’t my specialization always get used?” That, alas, is a mistake: if you want to be sure it will always be used in the case of exact match, that’s what a plain old function is for — so just make it a function instead of a specialization.

The rationale for why specializations don't participate in overloading is simple, once explained, because the surprise factor is exactly the reverse: the standards committee felt it would be surprising that, just because you happened to write a specialization for a particular template, that it would in any way change which template gets used. Under that rationale, and since we already have a way of making sure our version gets used if that's what we want (we just make it a function, not a specialization), we can understand more clearly why specializations don't affect which template gets selected.

But what if you’re the one who’s writing, not just using, a function template? Can you do better and avoid this (and other) problem(s) up front for yourself and for your users? Indeed you can:

// Example 4: Illustrating Moral #2
//
template<class T>
void f( T t ) { FImpl<T>::f( t ); }  // users, don’t touch 
                                     // this!

template<class T>
struct FImpl
{
  static void f( T t );  // users, go ahead and specialize this
};

Summary

It’s okay to overload function templates. Overload resolution considers all base templates equally, so it works as you would naturally expect from your experience with normal C++ function overloading: whatever templates are visible are considered for overload resolution, and the compiler simply picks the best match.

It’s a lot less intuitive to specialize function templates. For one thing, you can’t partially specialize them — pretty much just because the language says you can’t [2]. For another thing, function template specializations don’t overload. This means that any specializations you write will not affect which template gets used, which runs counter to what most people would intuitively expect. After all, if you had written a non-template function with the identical signature instead of a function template specialization, the non-template function would always be selected because it’s always considered to be a better match than a template.

If you’re writing a function template, prefer to write it as a single function template that should never be specialized or overloaded, and implement the function template entirely in terms of a class template. This is the proverbial level of indirection that steers you well clear of the limitations and dark corners of function templates. This way, programmers using your template will be able to partially specialize and explicitly specialize the class template to their heart’s content without affecting the expected operation of the function template. This avoids both the limitation that function templates can’t be partially specialized, and the sometimes surprising effect that function template specializations don’t overload. Problem solved.

If you’re using someone else’s plain old function template (one that’s not implemented in terms of a class template as suggested above), and you want to write your own special-case version that should participate in overloading, don’t make it a specialization; just make it an overloaded function with the same signature.

Acknowledgments

Thanks to Peter Dimov and Dave Abrahams for prompting me to write about this topic and offering the key example, and to John Spicer for helping me get my head around the rationale for why things are the way they are.

Notes

[1] In Standardese, a full specialization is called an "explicit specialization."

[2] There is some discussion going on within the committee about potentially allowing function template partial specialization in the next version of the C++ Standard, whose work is just getting under way.

Herb Sutter (<www.gotw.ca>) is secretary of the ISO/ANSI C++ standards committee and author of the acclaimed books Exceptional C++ and More Exceptional C++ (available summer 2001). Herb is also one of the featured instructors of The C++ Seminar (<www.gotw.ca/cpp_seminar>).

Terms of Service | Privacy Statement | Copyright © 2024 UBM Tech, All rights reserved.