Unable to invoke the super constructor
in
Programming Questions
•
6 months ago
Hey guys! I've been having a little bit of a problem... I am unable to invoke an objects super constructor!
Here's basically what I tried:
class MyOtherClass{
MyOtherClass(int i)
{
println(i);
}
}
class MyClass extends MyOtherClass
{
MyClass(int i)
{
super(i);
}
}
1