I have structure for storing callback function like this:
template<class T>
struct CommandGlobal : CommandBase
{
typedef boost::function<T ()> Command;
Command comm;
virtual T Execute() const
{
if(comm)
return comm();
return NULL;
}
};
Seems like it should work fine except when T is void because the Execute function wants to return a value..
What is the best solution to this problem?
Thanks!
Any method declared void doesn't return a value. It does not need to contain a return statement, but it may do so.
A void function cannot return any values. But we can use the return statement. It indicates that the function is terminated. It increases the readability of code.
Void functions are created and used just like value-returning functions except they do not return a value after the function executes. In lieu of a data type, void functions use the keyword "void." A void function performs a task, and then control returns back to the caller--but, it does not return a value.
Yes, you can return from a void function.
This answer is based off this fun-fact: In a function returning void
, you can return any expression of which the type is void.
So the simple solution is:
virtual T Execute() const
{
if (comm)
return comm();
else
return static_cast<T>(NULL);
}
When T = void
, the last return statement is equivalent to return;
.
However, I feel this is bad design. Is NULL
meaningful for every T
? I don't think so. I would throw an exception:
virtual T Execute() const
{
if (comm)
return comm();
else
throw std::runtime_error("No function!")
}
However, this is done automatically by Boost, so your code becomes the much cleaner:
virtual T Execute() const
{
return comm();
}
You could then add additional functionality, such as:
bool empty(void) const
{
return !comm; // or return comm.empty() if you're the explicit type
}
So the user can check if it can be called prior to calling it. Of course at this point, unless your class has additional functionality you've left out for the sake of the question, I see no reason not to just use boost::function
in the first place.
If it's just the return
statement, this should do the trick:
virtual T Execute() const
{
if(comm)
return comm();
return T();
}
If there's more to it, specialize the template for void
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With