阅读量:0
- 使用类型转换:将字符变量转换为整数类型,即可得到其ASCII码值。例如:
char ch = 'A'; int asciiValue = (int)ch;
- 使用强制类型转换:同样是将字符变量转换为整数类型,只是采用了强制类型转换的方式。例如:
char ch = 'A'; int asciiValue = static_cast<int>(ch);
- 使用标准库函数:C++标准库中提供了一些函数可以直接将字符转换为ASCII码值。例如:
char ch = 'A'; int asciiValue = static_cast<int>(ch);
以上是常见的几种方法,可以根据具体情况选择适合的方式进行ASCII码转换。