Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
2  
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 Domjan Mar 18 '09 at 16:38

7 Answers

up vote 34 down vote accepted

reinterpret_cast

share|improve this answer

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.

share|improve this answer

Try reinterpret_cast

unsigned char *foo();
std::string str;
str.append(reinterpret_cast<const char*>(foo()));
share|improve this answer

unsigned char* is basically a byte array and should be used to represent raw data rather than a string generally. A unicode string would be represented as wchar_t*

According to the C++ standard a reinterpret_cast between unsigned char* and char* is safe as they are the same size and have the same construction and constraints. I try to avoid reintrepret_cast even more so than const_cast in general.

If static cast fails with what you are doing you may want to reconsider your design because frankly if you are using C++ you may want to take advantage of what the "plus plus" part offers and use string classes and STL (aka std::basic_string might work better for you)

share|improve this answer

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

share|improve this answer

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 ;-)

share|improve this answer

Hope it help. :)

const unsigned attribName = getname();
const unsigned attribVal = getvalue();
const char *attrName=NULL, *attrVal=NULL;
attrName = (const char*) attribName;
attrVal = (const char*) attribVal;
share|improve this answer
1  
Downvote: Not very useful, and definitely not the C++ way. – Lstor Dec 19 '11 at 13:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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