0
What is the difference between super keyword and super method?
2 ответов
0
The super keyword allows you to use a parents class variables, constructor or method data(if you've overridden it). Super method isn't a thing unless you're talking about overriding a parent classes method and using super inside to call one of the methods statements.
0
thanks