ASCII码转字符如题,众所周知,A的ASCII为65,那么已知int num = 65,如何转换可以得到QString str = "A"; ASCII? QT [解决办法]QString s = (QChar)num;