在C++中,可以使用int
类型的值表示ASCII码,也可以使用char
类型的数组表示字符串。以下是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;
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码值。