現(xiàn)有:
1. abstract class Color2 {
2. //insert code here
3. }
4.
5. public class Blue2 extends Color2 {
6.public String getRGB() { return "blue"; }
7. }
和4個聲明:
public abstract String getRGB();
abstract String getRGB();
private abstract String getRGB();
protected abstract String getRGB();
分別插入到第2行,有多少行可以編譯?()
A. 0
B. 1
C. 2
D. 3