Are all of the below declarations the same? If so, what is the standard way to declare a constant function?
const SparseMatrix transpose();
SparseMatrix transpose() const;
const SparseMatrix transpose() const;
|
Are all of the below declarations the same? If so, what is the standard way to declare a constant function?
|
||||
|
The const on the left of the function name means the object that is returned cannot be modified. The const on the right means the method is apart of a class and does not modify any of its data members. Unless or course any of its data members are declared with the The placement of the
However, note that the placement of the
This method returns a pointer to a const
When const is placed on the immediate right of the return type (that is a pointer), it means the pointer is const and cannot be changed.
Furthermore, if we have
|
||||
|
The first one will return a The second one declares a function that returns a The final one does both. |
|||||||||
|
SparseMatrix const transpose() constandSparseMatrix const transpose()to consider. – Mooing Duck Jan 15 at 23:36