xjliu_installer(杰杰) 可能有理.但有官方的解释吗?

解决方案 »

  1.   

    1个八位组,也就是一个字节!
    .net是很浪费资源的,呵呵。
      

  2.   

    1 BITBoolean types 
    The boolean values are written to the console as a part of a sentence. The "bool" type is simply either a true or false.It`s size is 1 bit. 
      

  3.   

    一个字节,现在内存越来越便宜了,因此,和原来的处理方式也不一样了,虽然一个bit比较浪费,呵呵.
      

  4.   

    理论上应该是1bit,因为用0和1就完全可以表示false和ture
      

  5.   

    bool 关键字是 System.Boolean 的别名。这是MSDN的解释,Boolean是一个类,So……
      

  6.   

    如同MSDN另一段关于String的解释。string 类型表示一个 Unicode 字符的字符串。string 是 .NET Framework 中 System.String 的别名。而int,long,float,double都被解释为“类型”,而不是一个类的别名。