char ch = 'A'; int asciiValue = (int)ch;
char ch = 'A'; int asciiValue = static_cast<int>(ch);
以上是常见的几种方法,可以根据具体情况选择适合的方式进行ASCII码转换。