Multiple classes in single file

前端 未结 8 1650
北荒
北荒 2020-11-29 07:57

I\'m having trouble putting multiple classes into a single file. For example, when my file looks like:

public class FirstClass() {}
public class SecondClass(         


        
8条回答
  •  抹茶落季
    2020-11-29 08:27

    One Java file can consist of multiple classes with the restriction that only one of them can be public. As soon as you remove public keyword from your classes, you can combine them into a single Java file.

提交回复
热议问题