C++ Programming and Technical

What are some guidelines / "rules of thumb" for overloading operators?

Read Solution (Total 1)

C++ Other Question

Okay, that tells me the operators I can override; which operators should I override? What is the primary value in using virtual functions
within C++?
a) They prevent the base class function from ever
being called.
b) They allow you to provide unique behavior for
derived classes.
c) Since they are "virtual" they sometimes don't
really exist.
d) Internet technologies