What I learned when I first touched Java.
Package Due to the characteristics of Java, it is necessary to put together classes. How to write
package package name;
Many classes belong to this.
import Call and use other packages and classes How to write
import package name.name of the class;
Or
import package name.Interface name;
Often written under the package.
Recommended Posts