Tagged Questions
The const-cast tag has no wiki summary.
16
votes
2answers
182 views
Am I right in saying that const_cast followed by modification on a ref-to-const bound to a temporary is okay?
I would like to check my understanding and conclusions on this matter.
On IRC, it was asked:
Is it acceptable to const_cast a const reference that's bound to a temporary object?
Translating: ...
11
votes
6answers
776 views
Correct usage(s) of const_cast<>
As a common rule, it is very often considered a bad practice to use const_cast<>() in C++ code as it reveals (most of the time) a flaw in the design.
While I totally agree with this, I however ...
9
votes
3answers
179 views
Does this const initialization through const_cast have undefined behaviour?
According to my small tests this code works. But, does it have undefined behaviour? Modifying the const object through the use of const_cast resulted in run-time access violations in my previous ...
8
votes
8answers
387 views
How to call a non-const function within a const function (C++)
I have a legacy function that looks like this:
int Random() const
{
return var_ ? 4 : 0;
}
and I need to call a function within that legacy code so that it now looks like this:
int Random() ...
7
votes
1answer
166 views
Is this const_cast undefined behavior?
I was wondering whether the following is undefined behavior
// Case 1:
int *p = 0;
int const *q = *const_cast<int const* const*>(&p);
// Case 2: (I think this is the same)
int *p = 0;
int ...
6
votes
7answers
187 views
const_cast of a static const member
The following code compile well both with GCC (4.2-4.6) and with Clang (2.1), but when I run the executable it gives me "Bus error: 10". I don't understand the reason.
#include <iostream>
...
6
votes
3answers
293 views
Does const_cast ever cause actual code emission?
Is it true that const_cast is just a way to tell the compiler "stop moaning, treat this as a non-const pointer"? Are there any cases when const_cast itself is translated into actual machine code?
5
votes
1answer
147 views
Compiler switch to disable const_cast sematics in c-style casts?
Recently I stumbled over code such as this:
void foo(const Bar* b) {
...
takes_nonconst_param_fn((Bar*)b);
...
Obviously, the developer didn't know what he was doing, but if the compiler ...
5
votes
2answers
169 views
Where is the undefined behavior when using const_cast<>?
If I do:
const char* const_str = "Some string";
char* str = const_cast<char*>(const_str); // (1)
str[0] = "P"; // (2)
Where (which line) exactly is the undefined behavior ?
I've been ...
5
votes
5answers
288 views
Need clarifications in C-style, reinterpret, and const casts
Am I right in assuming that C-style casts (which are discouraged) are nothing but reinterpret_casts? Using the latter is visually striking and easy to search when looking for nasty casts, and hence ...
5
votes
3answers
2k views
C++ const_cast usage instead of C-style casts
Why is the following?:
const int i0 = 5;
//int i1 = const_cast<int>(i0); // compilation error
int i2 = (int)i0; // okay
int i3 = 5;
//const int ...
4
votes
3answers
106 views
const_cast doesn't work c++?
I have the following code :
const int k=1;
int *p=const_cast<int *>( &k);
cout<<"k before="<<*p<<endl;
*p=10;
*const_cast<int *>( &k)=12;
...
4
votes
4answers
99 views
Why is writing to a non-const object after casting away const of pointer to that object not UB?
According to C++ Standard it's okay to cast away const from the pointer and write to the object if the object is not originally const itself. So that this:
const Type* object = new Type();
...
3
votes
6answers
112 views
Undefined behaviour with const_cast
I was hoping that someone could clarify exactly what is meant by undefined behaviour in C++. Given the following class definition:
class Foo
{
public:
explicit Foo(int Value): m_Int(Value) { }
...
3
votes
2answers
112 views
Can one override my const C++ member function returning a const pointer to a internal non-const array using const_cast?
I'm learning c++ and came across this const_cast operator. Consider the following example:
class Test
{
private:
char name[100];
public:
Test(const char* n) { std::strncpy(name, n, 99); ...
3
votes
6answers
328 views
STL std::map, pass by ref to const and the necessity of const_casting
I have a simple question regarding const_cast and best practices regarding STL containers. Consider the following where class Foo has a private STL std::map from Widget* to int:
Declaration:
...
3
votes
5answers
440 views
Is using const_cast for read-only access to a const object allowed?
In C++ I have a function that only requires read-only access to an array but is mistakenly declared as receiving a non-const pointer:
size_t countZeroes( int* array, size_t count )
{
size_t ...
2
votes
3answers
78 views
const cast to a global var and program crashed (C++)
int main()
{
const int maxint=100;//The program will crash if this line is put outside the main
int &msg=const_cast<int&>(maxint);
msg=200;
...
2
votes
4answers
669 views
const_cast in template. Is there a unconst modifier?
I have a template class like this:
template<T>
class MyClass
{
T* data;
}
Sometimes, I want to use the class with a constant type T as follows:
MyClass<const MyObject> mci;
but I ...
2
votes
5answers
422 views
Why can't I const_cast the return of the conversion operator?
I've got a conversion operator that returns a const pointer, and I need to const_cast it. However, that doesn't work, at least under MSVC8. The following code reproduces my problem:
class MyClass {
...
1
vote
2answers
60 views
How to get a const reference to an object and change the object using that reference (Using const_cast)?
I have a member function returning a const reference to an instance of a class.
Example:
class State
{
const City* city1;
public:
State(const City& c) : city1(c) {}
const City& ...
1
vote
3answers
69 views
Is it possible to cast a pair<Key, Value> to a pair<const Key, Value>?
So I have a smart iterator that emulates a map const_iterator, and it needs to build the return type internally. Obviously, I'd like to store a pair<Key, Value> in my iterator class (since I ...
1
vote
1answer
279 views
C++ TR1: What is the proper way to use a uniform distribution to generate a random number in a const method?
I have a simple const method that wants to generate a random number
int Object::const_method() const {
std::tr1::uniform_int<int> uni(0,100);
// do some calculation
return result;
}
...
1
vote
4answers
116 views
const_cast and UB
$5.2.11/7 - "[Note: Depending on the
type of the object, a write operation
through the pointer, lvalue or pointer
to data member resulting from a
const_cast that casts away a
...
0
votes
2answers
90 views
Why const_cast away volatile only work for pointer
// OK!
volatile CString* a0;
CString* a1 = const_cast<CString *>(a0);
// error C2440: 'const_cast' : cannot convert from 'volatile CString' to 'CString'
volatile CString b0;
CString b1 = ...
0
votes
3answers
66 views
implicit const cast in templates
i ran across something similar to the below code snippet, which throws a compiler error because its using a const_iterator. is there a reason why vec.end() in std::copy does not implicitly get a ...
0
votes
2answers
50 views
Efficiently const_cast-ing a constant reference parameter
I have a member function which takes a constant reference parameter to another object. I want to const_cast this parameter in order to easily use it inside the member function. For this purpose, which ...
0
votes
1answer
111 views
Variable Value Changes By Itself
I've been pretty confused while programming before, but this one takes the cake. Basically I set the value in one for loop, and in the following iteration it changes to the value of the next one.
for ...
0
votes
3answers
123 views
casting const to pass it to function that takes reference, what happens?
Can anyone tell me what happens here when passing to g in the main, is it static_cast?
int & g (int&x){x++ ; return x ; }
int main()
{
const int a=5 ;
...
0
votes
4answers
82 views
Referencing string with pointers [closed]
Possible Duplicate:
Why does simple C code receive segmentation fault?
Why code snippet 2 doesn't behave like snippet 1?
//Code snippet 1
char pstr[] = "helloworld";
char *p = pstr;
p[2] ...
0
votes
1answer
97 views
const_casting question
I have the following code:
int main(){
const int a = 1;
const int* b(&a);
int* c = const_cast<int*>(b);
*c = 29;
cout<<*c<<a<<*b;
return EXIT_SUCCESS;
}
Why ...
0
votes
5answers
159 views
Is const_cast acceptable when defining an array?
I have a static const array class member (const pointers to SDL_Surfaces, but that's irrelevant), and have to loop through it in order to populate it. Aside from a const_cast when I'm done looping, ...
0
votes
3answers
132 views
Implications of a const_cast in a copy constructor?
So I've got an output stream class that owns a pointer to a class that actually does the writing, and I need a copy constructor so that I can return initialized instances from a function so that I can ...