QuƩ diferencia hay entre importar y heredar una clase? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

QuƩ diferencia hay entre importar y heredar una clase?

No entiendo la diferencia

28th Oct 2017, 12:08 AM
Goib
1 Resposta
+ 11
Importing a class, is making it so you can use that class without needing to qualify the full name in the current class you are writing. import java.util.Scanner; Extending a class is creating a new class that is a subclass of some other class. This will allow you to add or change functionality of the class you are extending. public class EmptyList extends ArrayList { @Override // ... }
28th Oct 2017, 7:40 AM
Dev
Dev - avatar