java - 为什么一个源文件中的类构造器必须与public类同名?
怪我咯
怪我咯 2017-04-17 17:48:25
0
2
1036

下列有关java构造跟使用叙述正确的是()
A. 构造器的返回值为vold类型
B. 如果一个源文件中有多个类,那么构造器必须与公共类同名
C. 构造器可以有0个,1个或一个以上的参数
D. 每个类可以有一个以上的构造器

这个题选b,c,d
但是对于B我不知道该怎么理解?

//AA.java
public class AA{
    public AA(){}
}

class BB
{
    public BB(){}//这也没和AA同名
}

这个B选项怎么理解?

怪我咯
怪我咯

走同样的路,发现不同的人生

reply all(2)
伊谢尔伦

Obviously B is not comprehensive

Ty80

This is a flaw in describing technical issues in Chinese. If the subject adjective is omitted, it means that there should be one less constructor of the class in the source file

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template