Importing

Descrição

Masters of Science Programming 1 FlashCards sobre Importing, criado por Nathan Hunsdale em 04-06-2014.
Nathan Hunsdale
FlashCards por Nathan Hunsdale, atualizado more than 1 year ago
Nathan Hunsdale
Criado por Nathan Hunsdale mais de 11 anos atrás
158
0

Resumo de Recurso

Questão Responda
What does an import statement enhance for the program? How? Functionality It can import packages with specified functionality that you can optionally import
Importing Classes It is good to import a package member(java.util.Scanner;), but why is it not good to import the whole package(java.util.*)? Uses unnecessary memory and resources and makes the end file bigger
Importing Classes You can import a utility class and it can be ready to use without declaration because the function is declared internally as ______ static