Hi,
why am I not allowed to override a static function of the base class?
class B{
static out () {}
}
class D extends B {
out() {}
}
why am I not allowed to override a static function of the base class?
class B{
static out () {}
}
class D extends B {
out() {}
}
Comment