现有如下包结构:<br />  com |-- x | |-- Alpha.class | | | |-- y | |-- Beta.class | |-- Gamma.class <br /> 和类: <br /> class Test { Alpha a; Beta b; Gamma c; } <br /> 哪三个必须加入到类 Test 中,以使其通过编译?()
A、package y;
B、package com;
C、import com.x.*;
D、import com.x.y.*