以下是"public static void test(int x, int y)"的方法重载( )
A: public static void Test(int x)
B: public static int test(int x, int y)
C: public static void test(int y, int x)
D: public static void test(int x, int y)
A: public static void Test(int x)
B: public static int test(int x, int y)
C: public static void test(int y, int x)
D: public static void test(int x, int y)
举一反三
- 以下是"public static void test(int x, int y)"的方法重载
- 请说出下列程序错在哪里?给出具体原因。 public class Test { public static void method(int x) { } public static int method(int y) { return y; } }
- (6-6)请阅读程序,写出程序运行结果。 class Test{ static int x=10; int y=99; { y=y+10; } static { x=x+5; } { y=y+10; } static { x=x+5; } public Test() {//构造方法 x=x+5; } { System.out.println(x*y); } } public class Demo11 { public static void main(String[] args) { Test t1=new Test(); Test t2=new Test(); } }
- using System; class Test { public static void Main() { int x = 5; int y = x++; Console.WriteLine(y); y=++x; Console.WriteLine(y); } }
- 已有如下程序: 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){}