无意中看到这么一段代码
for(int i=(int)'z';i>='a';i--)
{
....
}因为我菜 还没见过(int)'z'这种写法...
自己试了一下 发现它等于122  (int)'a'=97
大仙们请解释一下, 这是什么意思,为什么 会等于这些数字...