Im working my way through some C++ code and came across the following
void Classname::operator()()
{
//other code here
}
I assume this has something to do with overloading the constructor, but can someone elaborate on that?
|
Im working my way through some C++ code and came across the following
I assume this has something to do with overloading the constructor, but can someone elaborate on that?
| ||||
feedback
|
|
This is useful for functors and various other C++ techniques. You can essentially pass a "function object". This is just an object that has an overload of
This will call | |||
|
feedback
|
|
It makes your class an object called a "Functor" ... it's often used as a closure-type object in order to embed a state with the object, and then call the object as-if it were a function, but a function that has "state-ness" without the downside of globally accessible static variables like you would have with traditional C-functions that attempt to manage a "state" with internal static variables. For instance, with
An instance of | |||
|
feedback
|
|
It's not overloading the constructor -- it's overloading the function-call operator. If you define this for a class, then you can invoke an instance of the class as if it were a function. Such an object is generally called a functor. | |||
|
feedback
|
|
That's the code to overload the operator '()' which basically allows you to use the class as a function with no parameters, you could also have something like:
For more info on overloading you can check: Operators_in_C_and_C++ | |||
|
feedback
|