+ 1

Can I call main class and inside other ?

class Launcher{// can I call main class class Alfa{ // is this suitable? } class Delta{ // or can I use this type of class in main class. Supposed } }

10th Aug 2017, 1:32 PM
Muhammad Belal
Muhammad Belal - avatar
1 Réponse
0
Yes, you can have nested/inner classes (classes inside other classes). See: https://docs.oracle.com/javase/tutorial/java/javaOO/nested.html
12th Aug 2017, 2:58 AM
marit vandijk