“Java Super Class” Kod odpowiedzi

Java Super Class

/* Base class vehicle */
class Vehicle
{
    int maxSpeed = 120;
}
  
/* sub class Car extending vehicle */
class Car extends Vehicle
{
    int maxSpeed = 180;
  
    void display()
    {
        /* print maxSpeed of base class (vehicle) */
        System.out.println("Maximum Speed: " + super.maxSpeed);
    }
}
  
/* Driver program to test */
class Test
{
    public static void main(String[] args)
    {
        Car small = new Car();
        small.display();
    }
}
ap_Cooperative_dev

Super klasa Tostring Java

   public String toString() {
        return super.toString() + ", isProfessional=" + isProfessional;
    }
Ares Azlan

Odpowiedzi podobne do “Java Super Class”

Pytania podobne do “Java Super Class”

Więcej pokrewnych odpowiedzi na “Java Super Class” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu