一个新的数据类型 布尔
Boolean date types:bool
can store only one of two values :true(1) or false(0) occupy 1 byte memory
c语言和c关于强制类型转换的区别
C type cast :using type cast operator (type) int a=1; float b= (float)a/2;
C type cast :using static_cast static_cast
原文:https://www.cnblogs.com/panghushalu/p/12355654.html