Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a function that takes the exact same args, but sometimes I'd like for it to return a double and other times I'd like for it to return an int. What's the proper way to do that?

I could do function overloading, but the declarations of overloaded functions must differ from each other by the types and/or the number of arguments in the argument list. These would be identical so function overloading would not apply (I don't think).

double calc( int value, int add, double mult )
{
     // Sometimes I want this to return int. Sometimes double.
     return (value + add) * mult;
}

I'd rather not cast to int when that's the type I expect or write two functions (one for ints, the other for doubles). Thanks for any advice.

share|improve this question
2  
Can you elaborate in what circumstances you want an int versus a double? – templatetypedef Mar 30 '12 at 17:58
How would you use that function? Can you provide examples for both cases? – Andre Mar 30 '12 at 18:01
@templatetypedef - Yes, sometimes the mult arg is 1.0, at other times it is 1.375, etc. When it's 1.0 I'd like to return an int. When it's 1.375 I'd like to return a double. – 01100110 Mar 30 '12 at 18:02
@user1200129: why don't you always return double? It's just 4 more bytes. I think your machine can handle this. ;) – Idov Mar 30 '12 at 18:06
@Idov - Yes, that's what I do now. But when calling applications get 1.0 rather than 1. They complain or crash. – 01100110 Mar 30 '12 at 18:11
show 1 more comment

3 Answers

up vote 5 down vote accepted

You can create a second function:

int calcInt(int value, int add, double mult) {
  return calc(value, add, mult);
}

Or you can use a template:

template <class myType>
myType calc(int value, int add, myType mult) {
  return (value + add) * mult;
}

You can't create a different function with the same name and arguments; the compiler wouldn't know which one you wanted to invoke.

share|improve this answer
Personally, I'd prefer the "calcInt" version, the other isn't explicit enough from a code readabilty point of view. It may mask logic/precision issues further down the track. – JoshG Mar 31 '12 at 1:38
Agreed. But sometimes it's helpful to know what the options are. – Adam Liss Mar 31 '12 at 1:42
template <typename T, typename U>
T calc (const int value, const int add, const U mult)
{
    return static_cast<T> ((value + add) * mult);
}

calc<double> (1, 2, 1.7); // returns double
calc<int> (1, 2, 3.4); // returns int
share|improve this answer
Thanks, I want calc( 1, 2, 1.0 ); to return an int and calc( 1, 2, 1.375 ); to return a double. The mult arg will always be 1.0 or 1.375. It's never just 1. – 01100110 Mar 30 '12 at 18:09
I've updated the answer. That should work now. – Anteru Mar 30 '12 at 18:17

Assuming this is for maintaining precision or something like that, I would define my own type -- Number or something like that, and manage whether it is an int or double internally.

share|improve this answer
It is sort of related to that. A calling app wants an int. I give it 1.0 and it freaks out because it expects 1, not 1.0 so I was trying to make the function return 1 when the calling app wants an int. – 01100110 Mar 30 '12 at 18: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.