FAQ: Generics: Lesson - Interfaces

This community-built FAQ covers the “Interfaces” exercise from the lesson “Generics: Lesson”.

Paths and Courses
This exercise can be found in the following Codecademy content:

[BETA] Learn Intermediate Java

FAQs on the exercise Interfaces

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!
You can also find further discussion and get answers to your questions over in #get-help.

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head to #get-help and #community:tips-and-resources. If you are wanting feedback or inspiration for a project, check out #project.

Looking for motivation to keep learning? Join our wider discussions in #community

Learn more about how to use this guide.

Found a bug? Report it online, or post in #community:Codecademy-Bug-Reporting

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

for the 4th section of the exercise:
(Let’s create some references to our generic interfaces and output some data to the terminal…)

my answer:
Container containerRetriever = new Container<>(myNumber);
Book bookRetriever = new Book(bookName);

provided solution:
Retriever containerRetriever = new Container<>(myNumber);
Retriever bookRetriever = new Book(bookName);

My solution yields desired results, but i am wondering if it’s correct or not. Thank you for your time.

I hardly take anything in from this course so far (unlike with the Learn Java course). What is creating a “new Retriever”? It’s not a regular class, it’s an interface that simply allows your to “inherit” empty methods from it (I’d like to add that it has never been clearly explained by Codecademy why one may need any interfaces in the first place, let alone generic ones). Why is an interface now used to create objects all of a sudden? Folks at Codecademy, you should definitely rewrite the Learn Intermediate Java course from scratch, it’s a disgrace, frankly (not to mention silly mistakes like “it’s” instead of “its”, etc.)

2 Likes

hah :slight_smile: You are not alone. Feeling exactly the same way.
Why would I implement interface if rewrite it?
The program seem perfectly works without this.

And yeah, This is first time when interfaces being explaned

I cannot say yet, that the course need to be rewritten. Serialization was okay, I finished my project after that.
But with Interfaces I am frustrated :slight_smile: Hope it will be understood later