Under what conditions should you define a new package within java? I'm interested in responses for an Android app and a simple web application.
Thanks...
|
feedback
|
|
The whole point of a package in java or a namespace in c++ or a module in python, is to keep related code together to promote modularization and to keep class names from clashing with other projects or libraries. You don't have to create separate packages. I would take a look at a few open source java projects to see how they manage their package layouts. Keep in mind that it can be taken too far as well. | |||
|
feedback
|
|
A good general rule is to put code in another package when there is several classes making up some functionality that would be reusable on its own when taken out of context of the app its being created for. Things like a single class to change part of an image, just leave it as a single class in the project, and copy it around or post it to a blog eet... Things like 6-7 class files that create, maintain and manage something like downloading several images from the web for different resolutions and serving the app up the right image it needs when it needs it, while handling network connections and things. This would be a good example of something to split out into a separate package. The code is highly reusable, not too specific for a single app, and it is easy to define a separation where the package could be used on its own without the original app. | |||
|
feedback
|
|
Just like folders, How you manage folders is the way how you manage packages. group something similar:
So you can have better management on classes. | |||
|
feedback
|