Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I try to use float as a template param, the compiler cries for this code, while int works fine. Is it that I cannot use float as a template parameter?

#include<iostream>
using namespace std;

template <class T, T defaultValue>
class GenericClass
{
private:
    T value;
public:
    GenericClass()
    {
        value = defaultValue;
    }

    T returnVal()
    {
        return value;
    }
}; 


int main()
{
    GenericClass <int, 10> gcInteger;
    GenericClass < float, 4.6f> gcFlaot;

    cout << "\n sum of integer is "<<gcInteger.returnVal();
    cout << "\n sum of float is "<<gcFlaot.returnVal();

    return 0;       
}

Error:

somthing.cpp: In function `int main()':
somthing.cpp:25: error: `float' is not a valid type for a template constant parameter
somthing.cpp:25: error: invalid type in declaration before ';' token

somthing.cpp:28: error: request for member `returnVal' in `gcFlaot', which is of non-class type `int'

I am reading "Data Structures for Game Programmers" by Ron Penton, the author passes a float, while when I try it it doesn't seem to compile.

share|improve this question

4 Answers

up vote 12 down vote accepted

The current C++ standard does not allow float (i.e. real number) or character string literals to be used as template constant parameters. You can of course use the float and char * types as normal parameters. Perhaps the author is using a compiler that doesn't follow the current standard?

share|improve this answer
Please provide a link to or copy of relevant section from the standard – thecoshman Jul 17 '12 at 8:37
@thecoshman the relevant section of the standard + more information is available in my (newly posted) answer. – refp Jul 17 '12 at 10:10

Just to provide one of the reasons why this is a limitation (in the current standard at least).

When matching template specializations, the compiler matches the template arguments, including non-type arguments.

By their very nature, floating point values are not exact and their implementation is not specified by the C++ standard. As a result, it is difficult to decide when two floating point non type arguments really match:

template <float f> void foo () ;

void bar () {
    foo< (1.0/3.0) > ();
    foo< (7.0/21.0) > ();
}

These expressions do not necessarily produce the same "bit pattern" and so it would not be possible to guarantee that they used the same specialization - without special wording to cover this.

share|improve this answer

THE SIMPLE ANSWER

The standard doesn't allow floating points as non-type template-arguments, which can be read about in the following section of the C++11 standard.

14.3.2/1      Template non-type arguments      [temp.arg.nontype]

A template-argument for a non-type, non-template template-parameter shall be one of:

  • for a non-type template-parameter of integral or enumeration type, a converted constant expression (5.19) of the type of the template-parameter;

  • the name of a non-type template-parameter; or

  • a constant expression (5.19) that designates the address of an object with static storage duration and external or internal linkage or a function with external or internal linkage, including function templates and function template-ids but excluding non-static class members, expressed (ignoring parentheses) as & id-expression, except that the & may be omitted if the name refers to a function or array and shall be omitted if the corresponding template-parameter is a reference; or

  • a constant expression that evaluates to a null pointer value (4.10); or

  • a constant expression that evaluates to a null member pointer value (4.11); or

  • a pointer to member expressed as described in 5.3.1.


But.. but.. WHY!?

The reason I think the standard doesn't permit floating point values as template arguments is that floating points cannot be represented in an exact manner.. therefore it could result in erroneous behavior when doing something as the below:

func<1/3.f> (); 
func<2/6.f> ();

We meant to call the same function twice, though this might not be the case since the floating point representation of the two isn't guaranteed to be exactly the same.


How would I represent floating point values as template arguments?

With C++11 you could write some pretty advanced constant-expressions (constexpr) that would calculate the numerator/denominator of a floating value compile time and then pass these two as separate integer arguments.

Remember to define some sort of threshold so that floating point values close to each other yields the same numerator/denomitor, otherwise it's kinda pointless since it will then yield the same result previously mentioned as a reason not to allow floating point values as non-type template arguments.

share|improve this answer
While I appreciate the info and the reference to the standard, you do realize that this question was asked in 2010 and has an accepted answer? You are free to edit the other answers and add more information as well :) – nightcracker Jul 17 '12 at 9:18
1  
@nightcracker I wrote this answer to a question that was closed as a duplicate of this one before I had a chance to actually post it, therefore I decided to post it here.. I don't like wasting time. ;-) – refp Jul 17 '12 at 9:35
Fair enough :). – nightcracker Jul 17 '12 at 9:38
7  
The C++11 solution is <ratio>, described by §20.10 as "Compile-time rational arithmetic". Which cuts right to your example. – Potatoswatter Jul 17 '12 at 10:45
1  
@Potatoswatter afaik there isn't any method in the STL to convert a float into numerator/denominator using <ratio>? – refp Jul 17 '12 at 11:16
show 1 more comment

Indeed, you can't use float literals as template parameters. See section 14.1 ("A non-type template-parameter shall have one of the following (optionally cv-qualified) types...") of the standard.

You can use a reference to the float as a template parameter:

template <class T, T const &defaultValue>
class GenericClass

.
.

float const c_four_point_six = 4.6; // at global scope

.
.

GenericClass < float, c_four_point_six> gcFlaot;
share|improve this answer
5  
You can. but it doesn't do the same thing. You can't use the reference as a compile-time constant. – anon Feb 2 '10 at 10:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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