0
I don't get the concept of the import function
2 Answers
+ 1
Generally in programming,
When a developer or programmer is importing something, they are importing a library or a Parent-Class of a code.
For instance:
import java.util.Scanner;
The first part is calling the import method. The second is referring to the language that is being imported. The third is referring to the library. The fourth refers to the Parent-Class of the Object.
0
thanks very much