vote up 3 vote down star

I have:

unsigned char *foo();
std::string str;
str.append(static_cast<const char*>(foo()));

The error: invalid static_cast from type ‘unsigned char*’ to type ‘const char*’

What's the correct way to cast here in C++ style?

flag

1  
unsigned char has been typically used for holding unicode style strings, are you sure you want to directly cast it rather converting the contents? – Greg Mar 18 at 16:38

5 Answers

vote up 12 vote down check

reinterpret_cast

link|flag
vote up 0 vote down

By the way if you work under Visual Studio, then you can force compiler to treat char as unsigned char. Project settings | C/C++ Settings | Language | Default Char Unsigned ;-)

link|flag
vote up 2 vote down

char * and const unsigned char * are considered unrelated types. So you want to use reinterpret_cast.

But if you were going from const unsigned char* to a non const type you'd need to use const_cast first. reinterpret_cast cannot cast away a const or volatile qualification.

link|flag
vote up 0 vote down

Try reinterpret_cast

usigned char *foo();
std::string str;
str.append(reinterpret_cast<const char*>(foo()));
link|flag
vote up 0 vote down

You would need to use a reinterpret_cast<> as the two types you are casting between are unrelated to each other.

link|flag

Your Answer

Get an OpenID
or

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