vote up 16 vote down star

When defining a function template or class template in C++, one can write this:

template <class T> ...

or one can write this:

template <typename T> ...

Is there a good reason to prefer one over the other?


I accepted the most popular (and interesting) answer, but the real answer seems to be "No, there is no good reason to prefer one over the other."

  • They are equivalent.
  • Some people have reasons to always use typename.
  • Some people have reasons to always use class.
  • Some people have reasons to use both.
  • Some people don't care which one they use.
flag
I think in this case it might have been justified to pull all of the answers together and accept your own new answer instead of putting the answer in the question text. – Catskul Oct 5 at 15:45

9 Answers

vote up 16 vote down check

Stan Lippman talked about this here. I thought it was interesting.

link|flag
Thanks for the link - I also found it interesting (but not surprising). – Michael Burr Oct 17 '08 at 17:54
1  
And don't forget to read into the comments for whether there's a good reason to use "class" rather than "typename". – Michael Burr Oct 17 '08 at 22:06
1  
I think defacto StackOverflow ettiquette is to offer a few line summary if you are going to defer to a "look here". – Catskul Oct 5 at 15:53
I wrote this response nearly a year ago, about a month after the site went public. There was hardly a defacto anything at that point. Point taken, though. – itsmatt Oct 5 at 16:20
vote up 0 vote down

Extending DarenW's comment.

Once typename and class are not accepted to be very different, it might be still valid to be strict on their use. Use class only if is really a class, and typename when its a basic type, such as char.

These types are indeed also accepted instead of typename

template< char myc = '/' >

which would be in this case even superior to typename or class.

Think of "hintfullness" or intelligibility to other people. And actually consider that 3rd party software/scripts might try to use the code/information to guess what is happening with the template (consider swig).

link|flag
vote up 0 vote down

Steve Dewhurst thinks that these two words have the same meaning in current context. So do I

link|flag
vote up 1 vote down

In response to Mike B, I prefer to use 'class' as, within a template, 'typename' has an overloaded meaning, but 'class' does not. Take this checked integer type example:

template <class IntegerType>
class smart_integer {
public: 
    typedef integer_traits<Integer> traits;
    IntegerType operator+=(IntegerType value){
        typedef typename traits::larger_integer_t larger_t;
        larger_t interm = larger_t(myValue) + larger_t(value); 
        if(interm > traits::max() || interm < traits::min())
            throw overflow();
        myValue = IntegerType(interm);
    }
}

larger_integer_t is a dependent name, so it requires 'typename' to preceed it so that the parser can recognize that larger_integer_t is a type. class, on the otherhand, has no such overloaded meaning.

That... or I'm just lazy at heart. I type 'class' far more often than 'typename', and thus find it much easier to type. Or it could be a sign that I write too much OO code.

link|flag
I don't consider that being overloaded. In both cases, typename does the same: signifying that it is followed by a type instead of a variable. – Leon Timmermans Oct 28 '08 at 18:24
vote up 1 vote down

It doesn't matter at all, but class makes it look like T can only be a class, while it can of course be any type. So typename is more accurate. On the other hand, most people use class, so that is probably easier to read generally.

link|flag
vote up 7 vote down

I prefer to use typename because I'm not a fan of overloaded keywords (jeez - how many different meanings does static have for various different contexts?).

link|flag
1  
Of course, typename is overloaded as well.... – James Curran Oct 17 '08 at 18:00
1  
True, but it seems to be less confusingly overloaded - the other uses of typename are confusing not because of the overload as much as the situations where it's required are quite confusing. Other keyword overloads (class or static) seem to be active participants in the confusion. – Michael Burr Oct 17 '08 at 18:18
vote up 22 vote down

According to Scott Myers, Effective C++ (3rd ed.) item 42 (which must, of course, be the ultimate answer) - the difference is "nothing".

Advice is to use "class" if it is expected T will always be a class, with "typename" if other types (int, char* whatever) may be expected. Consider it a usage hint.

link|flag
I like the concept of the hint factor. I think I will start using that. – Martin York Oct 17 '08 at 20:44
vote up 1 vote down

As far as I know, it doesn't matter which one you use. They're equivalent in the eyes of the compiler. Use whichever one you prefer. I normally use class.

link|flag
vote up -3 vote down

Typename is somewhat semantically broader, as I recall.

link|flag
Don't feel bad, I thought so too. – Mark Ransom Oct 27 '08 at 19:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.