In this video, we discuss the Java programming practice of organizing our code using packages. Packages are an extremely useful tool when we want to organize our code based on functionality. In large codebases, packages come in handy in order to make code easy to find. For example, we can expect all of the code for a server to be located in the com.myapp.server or additionally for any Utility type functions to be contained in com.myapp.io. Also, we discuss how to use code from other packages inside of a class. This is done via the Import statement. We can tell the class to import a specific class or an entire package using the "*" notation.
If you enjoyed the video feel free to like and subscribe to get notifications for my future posts!
Please follow me on Twitter and Instagram: @BeABttrProgrmmr
Here's a link to the IDE that I am using: https://www.jetbrains.com/idea/