请阅读下面的程序,选择正确的运行结果。class Demo{private static int x ;public static void main(String[] args){System.out.println(x++);}}
答:0
继续答题:下一题
更多JAVA程序设计试题
- 1请阅读下面的程序,程序的运行结果是()。class Person {String name;int age;public Person() {}public Person(String n, int a) {name = n;age = a;}public void show() {System.out.print(name + "---" + age +"");}}public class Test {public static void main(String[] args) {Person p1 = new Person();p1.show();Person p2 = new Person("周星驰", 27);p2.show();}}
- 2下面哪种类型的文件可以在Java虚拟机中运行?
- 3下面的程序段创建了BufferedReader类的对象in,以便读取本机d盘my文件夹下的文件1.txt。File构造函数中正确的路径和文件名的表示是( )。File f=new File(填代码处);file=new FileReader(f);in=new BufferedReader(file);
- 4下列程序中哪行代码是错误的?public class Exam{public static void main(String args[]) {int x = 8;byte b = 127;//【代码A】b = x;//【代码B】long y=x;//【代码C】float z=6.89F;//【代码D】}}
- 5嵌入式SQL实现时,采用预处理方式是()
- 6下列程序中哪行代码是错误的?public class Exam{public static void main(String args[]) {int x = 8;byte b = 127;//【代码A】b = x;//【代码B】long y=x;//【代码C】float z=6.89F;//【代码D】}}