About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
co89757
8/26/2014 - 3:51 PM
share
Share
add_circle_outline
Save
java notes
java notes
javanotes.md
content_copy
file_download
Rendered
Source
#JAVA Notes
Chap. Access Control and Code Organization
Library Unit: package
Compilation Unit: .java src files
each src file should have
only ONE public class
and all else are supporting classes with package access
a package statement:
package [package_name];
clear