NYC's Blog - C/C++中如何选择基本数据类型 的评论 http://niyanchun.com/decide-whick-type-to-use.html 《C++ Primer》中对于如何选择我们要使用的类型给出了四条建议:如果你知道变量不可能是负值的话,就使用无符号类型。在整数运算中尽量选择int类型,而不是short,因为short一般太小了...