Skip to content
Advertisement

How do I create a constructor for a class that is inheriting from an abstract class with generics?

My university professor shared this class with us (it’s essentially a generic parser using Gson):

JavaScript

I created a class that inherits from it so I can read a Business from a file:

JavaScript

Intellij automatically generated a constructor for it, but I don’t understand it. Why does the constructor has a class as a parameter, do I have to pass an instance of itself to it? That doesn’t make sense.

I would be grateful if you can point me to either some documentation to read through, or explain the pattern my professor is using.

Edit: to sum up, how do I instantiate my business class then? This is throwing an error:

JavaScript

Advertisement

Answer

This wouldn’t fit well in a comment: you could use a different style of constructor if you want. Replace this:

JavaScript

With this:

JavaScript

Which I think is more like your instructor may have intended.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement