已知程序中已经定义了函数test,其原型是int test (int,int,int);,则下列重载形式中正确的是( )。 A.char test(int, int, int); B.double test (int,int,double); C.int test(int ,int, int=0); D.float test(int,int,float=3.5F);
举一反三
- 已知程序中已经定义了函数test,其原型是int test(int,int,int);,则下列重载形式中正确的是( ) A: double test(int,int,double); B: int test(int,int,int=0); C: float test(int,int,float=3.5F); D: char test(int,int,int);
- 已知程序中已经定义了函数test,其原型如下: int test(int, int, int);则下列重载形式中正确的是( )。 A: char test(int,int,int); B: int test(int,int,double); C: int test(int,int,int=0); D: int TEST(int,int);
- 【单选题】与下述函数原型声明等价的是_______________。 int test(int a[3],int a[3][3]); (1.0分) A. int test(int a[],int a[][]); B. int test(int a[],int a[3][]); C. int test(int a[],int a[][3]); D. int test(int a[3],int a[3][]);
- 已有如下程序: public class Test{ public Test(int x,int y,int z){.....} } 下面哪些方法是合法的构造方法重载:( ) A: Test(){} B: int Test(){} C: Test(int x,int y,byte z){} D: void Test(int x,int y,int z){}
- 下面是关于结构类型与变量的定义语句,错误的是________。 A: struct test{int a; int b; int c;}; struct test y; B: struct test{ int a; int b; int c;} struct test y; C: struct test{ int a; int b; int c;} y; D: struct { int a; int b; int c;} y;