• 2022-06-07
    整数类型可分为byte型、short型、int型、long型与char型。
  • 内容

    • 0

      Java定义了4个整数类型:字节型(byte)、短整型(short)、整型(int)、长整型(long)其中int占用的内存为() A: 8bit B: 16bit C: 32bit D: 64bit

    • 1

      在算数表达式中,只含byte、short、char类型的数据,Java会首先把所有的数据类型转换为int型。

    • 2

      在Java语言中,switch语句后面的表达式的类型可以是byte,char,short和int,但是不允许是float、double或long型,另外,也可以是字符串类型。

    • 3

      对于“switch(a)”表达式中的变量a,它可以被声明为哪些合法数据类型? A: boolean, byte, char, short, int, long B: boolean, byte, char, short, int C: byte, char, short, int D: boolean, byte, char, short, int, long, float, double

    • 4

      中国大学MOOC:"a为int型变量,b为long型变量,c为char型变量,则表达式a+b/c+3.5的值是( )类型。";