bool和int有什么区别

【bool和int有什么区别】bool,类型的数据,在内存中只有一位,或0或1 。int类型的数据,在内存中有16位或32位 。bool的值范围只有0和1值,而int的范围为[-2^31,2^31-1]即[-2147483648,2147483647] 。