ID:9110-1549
用Javac编译Java源文件后得到代码叫字节码。( )?xml:namespace>
选择答案:查看解析
ID:9110-1136
如果需要从文件中读取数据,可以在程序中创建哪一个类的对象?( )?xml:namespace>
A.FileInputStream B.FileOutputStream
C.DataOutputStream D.FileWriter
查看解析
ID:9110-11545
下列选项中,合法的String型字符串常量是( )
A. ’M’ B. How are you C. ’#apple’ D. "apple"?xml:namespace>
查看解析
ID:9110-1145
在某个类A中存在一个方法:void getSort(int x),以下能作为这个方法的重载的声明的是( )。A、void GetSort(float x) B、int getSort(int y)?xml:namespace>
C、double getSort(int x,int y) D、void get(int x,int y)
查看解析
ID:9110-22898
写出下列程序的运行结果:
int i=10,j=10;
boolean b=false;
if(b=i==j)
System.out.println("True");
else
System.out.println("False");
查看解析