+1 vote
in JAVA by
Can we have multiple classes in single file ?

Yes we can have multiple classes in single file but it people rarely do that and not recommended. We can

have multiple classes in File but only one class can be made public. If we try to make two classes in File

public we get following compilation error.

“The public type must be defined in its own file”.

1 Answer

0 votes
by

Yes we can have multiple classes in single file but it people rarely do that and not recommended. We can

have multiple classes in File but only one class can be made public. If we try to make two classes in File

public we get following compilation error.

“The public type must be defined in its own file”.

Related questions

+1 vote
asked Jun 17, 2019 in JAVA by reins.robin
0 votes
asked Jun 17, 2019 in JAVA by reins.robin
...