Test Array Java

You need to be registered and logged in to take this quiz. Log in or Register

Classi Astratte

classe astratta

Indice Tutorial

Una classe astratta è simile a una normale classe: può avere attributi e metodi, ma è caratterizzata dalla parola chiave abstract. Non può essere istanziata e la sua implementazione è demandata alle sottoclassi;

Esempio:

public abstract class Animale {
    //campi
    private boolean vivo=true;
    //metodi
    public boolean isVivo() { return this.vivo; }
   
}

La classe “animali” è una categoria concettuale, non esiste “il generico animale”, ma solo animali specifici;

Leggi tutto “Classi Astratte”

Quiz Basici

You need to be registered and logged in to take this quiz. Log in or Register

Quiz Cicli – if

You need to be registered and logged in to take this quiz. Log in or Register

Test Logica Livello 2

You need to be registered and logged in to take this quiz. Log in or Register

Test Logica 1

You need to be registered and logged in to take this quiz. Log in or Register