Convert basic_string<unsigned char> to basic_string<char> and vice versa

眉间皱痕 提交于 2020-01-30 06:04:44

问题


From the following

Can I turn unsigned char into char and vice versa?

it appears that converting a basic_string<unsigned char> to a basic_string<char> (i.e. std::string) is a valid operation. But I can't figure out how to do it.

For example what functions could perform the following conversions, filling in the functionality of these hypothetical stou and utos functions?

typedef basic_string<unsigned char> u_string;
int main() {
    string s = "dog";
    u_string u = stou(s);
    string t = utos(u);
}

I've tried to use reinterpret_cast, static_cast, and a few others but my knowledge of their intended functionality is limited.


回答1:


Assuming you want each character in the original copied across and converted, the solution is simple

 u_string u(s.begin(), s.end());
 std:string t(u.begin(), u.end());

The formation of u is straight forward for any content of s, since conversion from signed char to unsigned char simply uses modulo arithmetic. So that will work whether char is actually signed or unsigned.

The formation of t will have undefined behaviour if char is actually signed char and any of the individual characters in u have values outside the range that a signed char can represent. This is because of overflow of a signed char. For your particular example, undefined behaviour will generally not occur.




回答2:


It is not a legal conversion to cast a basic_string<T> into any other basic_string<U>, even if it's legal to cast T to U. This is true for pretty much every template type.

If you want to create a new string that is a copy of the original, of a different type, that's easy:

basic_string<unsigned char> str(
    static_cast<const unsigned char*>(char_string.c_str()),
    char_string.size());


来源:https://stackoverflow.com/questions/34624505/convert-basic-stringunsigned-char-to-basic-stringchar-and-vice-versa

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!