Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Well done!
You have completed Inheritance in Java!
You have completed Inheritance in Java!
Preview
In this video we'll learn what inheritance is and use it for the first time!
Dog dog = new Dog(); dog.makeSound();
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
[MUSIC]
0:00
At this point,
we've seen how to create objects with
0:00
fields representing their properties and
methods representing their actions.
0:02
In this course, we'll see how to do a lot
more with objects by using inheritance.
0:07
Inheritance is actually
a pretty simple concept.
0:13
Let's say we have a class called A, and
0:16
this class has a couple fields and
a method.
0:19
Now let's say we have another class, B,
0:22
which is exactly like A except it has
an extra field and an extra method.
0:24
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up