哪个选项可以用在“// 赋值x=a, y=b”位置上(       )
public class Base
{ int x, y ,z, w;
public Base(int a,int b) { x=a; y=b; }
public Base(int a, int b, int c, int d)
{ // 赋值x=a, y=b
z=c;   w=d;
}
}
A) x=a , y=b; B) Base (a,b); C) super (a,b); D) this (a,b);