选择答案:查看解析
public class ish{
public static void main(String[] args)
{String s="call me ishmae";
System.out.println(s.charAt(s.length()-1));
}
}
则输出结果为:( )
A. a B. e C. c D. "
java解释器是对( )进行解释运行的
A.文件名.java B.文件名.class
C.文件名.obj D.文件名.exe
在Java中,byte数据类型的范围是( )
A. -32767~32768 B. -32768~
请指出正确的表达式( )。
A.byte b=128 B.boolean flag=null
C.long l=0xfffL D.double d=3.14d