C++中ASCII码与字符串之间的转换

avatar
作者
筋斗云
阅读量:0

在C++中,可以使用int类型的值表示ASCII码,也可以使用char类型的数组表示字符串。以下是ASCII码和字符串之间的转换方法:

  1. ASCII码转换为字符串:
int asciiValue = 65; // ASCII码值为65对应的字符为'A' char ch = static_cast<char>(asciiValue); std::string str(1, ch); // 构造一个字符串对象,包含ASCII码值对应的字符 std::cout << "String representation: " << str << std::endl; 
  1. 字符串转换为ASCII码:
std::string str = "Hello"; for (char& ch : str) {     int asciiValue = static_cast<int>(ch);     std::cout << "ASCII value of " << ch << ": " << asciiValue << std::endl; } 

在上述代码中,我们使用static_cast进行类型转换,将int类型转换为char类型,或者将char类型转换为int类型。通过循环遍历字符串中的每个字符,我们可以获取其对应的ASCII码值。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!