首 页
大学试题
CMS专题
工学
经济学
专升本
法学
教育学
历史学
更多分类
搜索
题库考试答案搜索网 > 题目详情
当前位置:
首页
>
给出下面代码,关于该程序以下哪个说法是正确的? ( )public class Person(){static int arr[] = new int[5];public static void main(String a[]){System.out.println(arr[0]); }}
>
题目详情
问题题干
答案解析
相关问题
热门问题
最新问题
问题详情
给出下面代码,关于该程序以下哪个说法是正确的? ( )public class Person(){static int arr[] = new int[5];public static void main(String a[]){System.out.println(arr[0]); }}
、编译时将产生错误
、编译时正确,运行时将产生错误
、输出空
、输出零
时间:2021-07-17 19:58
关键词:
答案解析
输出零
相关问题
关于下面程序,( )的结论是正确的。 public class J_Test { public static void main(String[] args) { try { return; } finally { System.out.println("1"); }
给出以下代码,请问该程序的运行结果是( )。 class Example { public static void main (String args[]) { try { byte x = -127; byte y = (byte)(x>>9); System.out.println(y); }catch(Exception e){ System.out.println("Exception"); } } }
给出下面代码,关于该程序以下哪个说法是正确的? ( )public class Person(){static int arr[] = new int[5];public static void main(String a[]){System.out.println(arr[0]); }}
下面程序的结果是 #include<iostream.h> class A { public: A(){cout<<"construtA" <<endl;} virtual ~A() {cout << "destructA" <<endl;}}; class B:public A { }; class C:public A { }; class D:public B,public C { }; void main() { Dd;}
能将程序补充完整的选项是( )。 class Person { private int a; public int change(int m){return m;) } public class Teacher extends Person { public int b; public static void main(String arg[]) { Person p=new Person(); Teacher t=new Teacher(); int i; } }
最新问题
下列代码段中声明了3个类: Class Person{}; Class Student:publiC Person{}; Class Undergraduate:Student{}; 下列关于这些类之间关系的描述中,错误的是( )。
下列代码段声明了3个类:class Person();class Student:public Person{};class Undergraduate:Student{};下列关于这些类之间关系的描述中,错误的是( )。
您编写以下代码以实现 CertkillerClass.MyMethod 函数。 public class CertkillerClass { public int MyMethod(int arg) { return arg; } } 您需要在您的程序集中不相关的类里动态调用 CertkillerClass.MyMethod 函数。 您应该使用哪个代码段?()
给出下面代码,关于该程序以下哪个说法是正确的?( ) public class Person{ static int arr[] = new int[5]; public static void main(String a[]) { System.out.println(arr[0]); } }
有以下程序片段,下列哪个选项不能插入到行1。( )12 public class Interesting{3 //do sth 4}
下面程序的结果是 #include<iostream.h> class A { public: A(){cout<<"construtA" <<endl;} virtual ~A() {cout << "destructA" <<endl;}}; class B:public A { }; class C:public A { }; class D:public B,public C { }; void main() { Dd;}
给出下列的程序段,哪个选项是不正确的? ( ) ①public void create(){ ②Vector my; ③my=new Vector(); ④}
给出下列的程序代码片段,下列的( )选项是不正确的。 ①public void create(){ ②Vector my; ⑧my=new Vector(); ④}
给出下列的程序代码片段,下列的______选项是不正确的。 ( )①public void create(){②Vector my;③my=new Vector();④}
给出下列的程序代码片段,下列选项说法不正确的是( )。 ① public void create( ){ ② Vector my; ③ my = new Vector( ); ④ }
别人在看