如子函数show无参数,无返回值,以下对show的声明正确的是( )
A: int show();
B: void show(int);
C: void show(int,int);
D: void show();
A: int show();
B: void show(int);
C: void show(int,int);
D: void show();
举一反三
- 下列哪些函数与此函数void show(int a,char b,double c){}重载。 A: void show(int x,char y,double z){} B: int show(int a,char b,double c){} C: void show(int a,double c,char b){} D: void show(int a,double c){}
- 下列描述中,()不是方法重载。 A: void Show(){}和void Show(string name){} B: string Show(string name){}和void Show(string name){} C: string Show(int age){}和void Show(string name){} D: void Show(int age){}和void Show(int age,string name){}
- 下列php函数定义正确的是() A: public void Show(){ } B: function Show(a,b){ } C: function Show($a,$b){ } D: function Show(int $a){ }
- 下列定义函数的方式是正确的( ) A: public void Show(){ } 强类型语言 B: function Show($a=5,$b){ } C: function Show(a,b){ } D: function Show(int $a){ }
- 若有以下程序: class Employee{ public void show(int i){} //① public void show(int i,int j){} //② } class Manager extends Employee{ public void show(){} //③ public void show(int i){} //④ } 则下面描述错误的是( ) A: 语句 ①与语句 ③是方法重载 B: 语句 ①与语句④是方法覆盖 C: 语句②与语句③是方法重载 D: 语句②与语句④是方法覆盖