Tagged Questions

36
votes
7answers
9k views

what is the difference between const int*, const int * const, int const *

I always mess up how to use it correctly. Is there a set of rules defining what you can and cannot do? I want to know all the Do's and all DoNOTs in terms of assignments, passing to the functions, ...
26
votes
8answers
4k views

How come a non-const reference cannot bind to a temporary object?

Why is it not allowed to get non-const reference to a temporary object, which function getx() returns? Clearly, this is prohibited by C++ Standard but I am interested in the purpose of such ...
23
votes
7answers
2k views

How do I remove code duplication between similar const and non-const member functions?

Let's say I have the following class X where I want to return access to an internal member: class Z { // details }; class X { std::vector<Z> vecZ; public: Z& Z(size_t index) ...
4
votes
3answers
529 views

What is the meaning of a const at end of a member function?

What exactly does the const keyword in C++ mean when it's written at the end of a member function (after the argument list)?