![]() |
VOOZH | about |
In C++, we can overload the comma operator using Operator Overloading. For Example: For "Send the query X to the server Y and put the result in variable Z", the "and" plays the role of the comma. The comma operator (, ) is used to isolate two or more expressions that are included where only one expression is expected. When the set of expressions has to be solved for operands, only the rightmost expression is considered.
Examples:
Input: x = (y = 5, y + 2)
Output: x = 7, y = 5
Explanation:
In the above expression:
It would first assign the value 5 to y, and then assign y + 2 to variable x.
So, at the end 'x' would contain the value 7 while variable 'y' would contain value 7.
Operators Resistant to Overloading are as follows:
Syntax:
return_type class_name::operator op(argument_list)
{
// body
}
where,
1) return_type: is the type of value returned by the function.
2) class_name: is the name of the class.
3) op: is an operator function where op is the operator being overloaded, and the operator is the keyword.
Rules for Operator Overloading:
In the below code, although, each expression is evaluated by the compiler, the values of left-hand expression are discarded. Finally, The value of the right-hand operation is returned by the function. This triggers the overloaded comma operator to function similarly to its default operation.
x=10 y=20 x=5 y=30 x=1 y=1 x=10 y=20 x=1 y=1 x=1 y=1
Below is another example where the comma (, ) operator is overloaded in the class named Coords3D.
Below is the program for the same:
x = 2 y = 4 z = 6 x = 10 y = 15 z = 20