Most voted "superclass" questions
5 questions
Sort by count of
-
6
votes2
answers6436
viewsClass, Superclass and Subclass
Regarding inheritance by code reuse in C# I have the following doubt: What’s the difference between classes, superclasses and subclasses? This changes something when doing code reuse? Additional…
-
2
votes0
answers28
viewsDoubt about inheritance in Python
Hi, I’m studying POO in Python and saw that you can inherit the attributes of a super class in two ways: Class nome_da_classe(nome_da_superclasse): def __init__(self, args):…
-
1
votes1
answer62
viewsPython: because when declaring the constructor of the Daughter I also have to declare the constructor of the Mother?
I am developing a small application in Python and I came across a question that I could not draw a concrete conclusion about why this should happen. Simply put, the problem is this:: The following…
-
0
votes1
answer43
viewsTransactions between several classes
Good, I’m relatively new to Java programming! The following is a Super Class named User of which there are 2 subclasses Citizen and Autarchy, within the Citizen class I have created an Arraylist…
-
0
votes0
answers640
viewsHow to use super in java?
I know the basics of super, but for example : If I have a class mae Person with attributes name, age and sex, and a class daughter Student with attributes course, enrollment and period, and a class…