Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Challenge: Inheritance | OOP
Java OOP

Challenge: InheritanceChallenge: Inheritance

Task

Let's start with your first task. The assignment is posted on GitHub, and your task is to fork the repository and clone it to your IntelliJ. You can find instructions on how to do this in this chapter .

Link to the task: GitHub

There are several classes in the animals package. The Dog class has its own fields and methods, and there are three classes for different dog breeds: Bulldog, Doberman, and Beagle. The breed classes currently don't have their own fields and methods, but I need them to have the fields and methods from the Dog class. Inherit the Dog class in each of the breed classes and run the test to check if you have completed the task correctly.

Warning
Please do not modify the Dog class!
  • Open the src folder, then open the main/java/codefinity/animals folder.
  • You will see the Dog class and other subclasses.
  • Open the subclasses and add the extends Dog keyword.
  • Run tests by pressing the "Run Code" button.
  • Tudo estava claro?

    Seção 2. Capítulo 3
    course content

    Conteúdo do Curso

    Java OOP

    Challenge: InheritanceChallenge: Inheritance

    Task

    Let's start with your first task. The assignment is posted on GitHub, and your task is to fork the repository and clone it to your IntelliJ. You can find instructions on how to do this in this chapter .

    Link to the task: GitHub

    There are several classes in the animals package. The Dog class has its own fields and methods, and there are three classes for different dog breeds: Bulldog, Doberman, and Beagle. The breed classes currently don't have their own fields and methods, but I need them to have the fields and methods from the Dog class. Inherit the Dog class in each of the breed classes and run the test to check if you have completed the task correctly.

    Warning
    Please do not modify the Dog class!
  • Open the src folder, then open the main/java/codefinity/animals folder.
  • You will see the Dog class and other subclasses.
  • Open the subclasses and add the extends Dog keyword.
  • Run tests by pressing the "Run Code" button.
  • Tudo estava claro?

    Seção 2. Capítulo 3
    some-alt