下面代码中能够正确编译的有()
A: float f=1.3;
B: double D=4096.0;
C: byte b=257;
D: String s=”1″
E: int i=10;
F: char c=”a”;G.char C=4096;H.boolean b=null;
A: float f=1.3;
B: double D=4096.0;
C: byte b=257;
D: String s=”1″
E: int i=10;
F: char c=”a”;G.char C=4096;H.boolean b=null;
举一反三
- 下面哪个语句会产生编译错误? () A: float F=4090 F; B: double D=4090; C: byte B=4096; D: char C=4096;
- 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
- 对于“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
- 下列数据类型中哪些是Java基本数据类型? A: short B: byte C: int D: long E: double F: float G: char
- 下列语句中,正确的是( ) 。 A: float f=(float)3.14; B: double d=(double) 'A'; C: oolean b=(boolean)0; D: char c=(char)97.27f;