I know that you can use <const_cast> to cast a const to a non-const.

But what should you use if you want to cast non-const to const?

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

const_cast can be used in order remove or add constness to an object. This can be useful when you want to call a specific overload.

Contrived example:

class foo {
    int i;
public:
    foo(int i) : i(i) { }

    int bar() const {
        return i;    
    }

    int bar() { // not const
        i++;
        return const_cast<const foo*>(this)->bar(); 
    }
};
link|improve this answer
static_cast or const_cast? – Guillaume07 May 2 '11 at 5:56
@Guillaume07 oops sorry, fixed. – Motti May 2 '11 at 5:57
feedback

You don't need const_cast to add constness:

class C;
C c;
C const& const_c = c;

Please read through this question and answer for details.

link|improve this answer
feedback

You can use a const_cast if you want to, but it's not really needed -- non-const can be converted to const implicitly.

link|improve this answer
To whomever did the downvote: since you're apparently not going to comment, or try to point out why you think this is wrong or unhelpful, could you at least do one more unwarranted downvote, so my rep score will be a multiple of 10 again? – Jerry Coffin May 2 '11 at 7:00
feedback

cosnt_cast can be used to add constness too.

From cplusplus.com:

This type of casting manipulates the constness of an object, either to be set or to be removed.

link|improve this answer
feedback

You have an implicit conversion if you pass an non const argument to a function which has a const parameter

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.