Why is the super() constructor recommended to be called when extending any of the RIM Screen classes? It was my understanding that the no-arg constructor of any super class was implicitly called from any class that extends it, am I wrong?
Why is the super() constructor recommended to be called when extending any of the
Share
super() will be called by default constructor no matter if you implement it or not.
It’s easy to test. Just a couple classes:
And test app:
So you see, there is no difference between dialog calls in ClassA() and ClassC(), also no diffs between ClassB() and ClassD().