2010年5月14日 - //char to int ASCII-code char c = 'a'; int ascii_code = (int)c; //int to char int i = 65; // A c = (char)i; ...
stackoverflow.com