Exercise 14.33: How many operands may an overloaded function-call operator take?
It's a question from C++ Primer 5th Edition that I'm reading.
Also from the book :
An overloaded operator function has the same number of parameters as the operator has operands.(Section 14.1)
From another thread on SO :
— Parameters in one function definition [256].
— Arguments in one function call [256].
Just confirming, is 256 the answer to this question?