中国大学MOOC: 下面程序段中是内联函数的是()。class location...::gety() {return y;}
举一反三
- (7-12)请阅读程序,写出程序运行结果。 class A{ static String name="tom"; static int getX() { return 2; } int getY() { return 3; } } class B extends A{ static String name="Tuny"; static int getX() { return 4; } int getY() { return 5; } } class C extends A{ static String name="Tuny"; static int getX() { return 4; } int getY() { return 5; } } interface D{ int getY(); } class E implements D{ public int getY() { return 6; } } public class Demo{ public static void main(String[] args) { A a=new A(); A b=new B(); A c=new C(); D d=new E(); int sum=a.name.length()+b.getX()+c.getY()+d.getY(); System.out.println(sum); } }
- 中国大学MOOC: 若有以下函数关系x<0 → y=2xx>0 → y=xx=0 → y=x+1下面程序段能正确表示以上关系的是( )。
- 中国大学MOOC:内联函数是()。
- 中国大学MOOC: 下面函数的功能是( )int funl(char * x){ char *y=x; while(*y++); return(y-x-1);}
- 中国大学MOOC: 下列程序段中,能够交换变量X和Y值的程序段是______。