unity面试题整理----北京*合起源

一、选择

1、C#中每个int类型变量占____字节的。

答案:4个

C#数据类型占用的字节数:

  1. bool -> System.Boolean (布尔型,其值为 true 或者 false)
  2. byte -> System.Byte (字节型,占 1 字节,表示 8 位正整数,范围 0 ~ 255)
  3. sbyte -> System.SByte (带符号字节型,占 1 字节,表示 8 位整数,范围 -128 ~ 127)
  4. char -> System.Char (字符型,占有两个字节,表示 1 个 Unicode 字符)
  5. short -> System.Int16 (短整型,占 2 字节,表示 16 位整数,范围 -32,768 ~ 32,767)
  6. ushort -> System.UInt16 (无符号短整型,占 2 字节,表示 16 位正整数,范围 0 ~ 65,535)
  7. uint -> System.UInt32 (无符号整型,占 4 字节,表示 32 位正整数,范围 0 ~ 4,294,967,295)
  8. in

你可能感兴趣的:(unity面试精选,unity,面试)