Hi everybody,
Itried to search both this website and the internet regarding the following topic, but I haven't found anything...could you provide me some details regarding const operators? What are they? In what do they differ from non const, standard, classes operators? Is it like const operators are not alloweed to change class members values?
That's basically it. Just like const methods, const operators can't modify the calling class. Certain operators are like this because they (likely) shouldn't be modifying the class; for example, operator+() for an integer class.