I am currently learning Java using the Deitel\'s book Java How to Program 8th edition (early objects version).
I am on the chapter on creating classes and methods.
Java doesn't use includes the way C does. Instead java uses a concept called the classpath, a list of resources containing java classes. The JVM can access any class on the classpath by name so if you can extend classes and refer to types simply by declaring them.
From: Include one java file in another java file