对于“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
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
C
举一反三
- Java定义了八种基本数据类型,以下选项中全部是正确的基本数据类型关键字的是( )。 A: int、byte、char、integer、double B: float、long、byte、short、String C: char、byte、bit、double、int D: float、double、boolean、byte、long
- 5,'5',"5"分别适合哪种数据类型来存储。 A: byte,char,boolean B: int,String,char C: short,char,String D: long,boolean,char
- 【填空题】在 Java 中, 基本数据类型有: byte 、 short 、 int 、 long 、 float 、 double 、 char 、 boolean。其中, byte 类型数据占 ______ 个字节, short 类型数据占 ______ 个字节, int 类型数据占 ______ 个字节, long 类型数据占 ______ 个字节,float 类型数据占 ______ 个字节,double 类型数据占 ______ 个字节, char 类型数据占 ______ 个字节, boolean 类型数据占 ______ 个字节
- 下列数据类型转换,必须进行强制类型转换的是()。 A: byte→int B: short→long C: float→double D: int→char
- switch语句后的表达式支持的数据类型() A: byte B: short C: char D: int E: long
内容
- 0
1. 以下数据类型转换中,必须进行强制类型转换的是 A: int→char B: short→long C: float→double D: byte→int
- 1
下列数据类型中哪些是Java基本数据类型? A: short B: byte C: int D: long E: double F: float G: char
- 2
成员变量初始化的原则:byte,short,int,long,float,double数值类型默认初始化为 ,boolean类型初始化为 ,char类型初始化为' ',引用类型全部初始化为
- 3
以下类型在内存中所占大小从小到大排序,正确的是()。 A: byte,short,long B: byte,long,short C: char,byte,float D: double,float,long
- 4
整数类型可分为byte型、short型、int型、long型与char型。