this piece of code below:
@Override
protected void onResume() {
super.onResume();
PostConnector.getInstance().addObserver(this):
}
// end
Does it mean that we call the super class to run the onResume() method at first -like the way it was written on the fist place- then we are allowed to add something to the method in order to override it?
Am I right?
Yes, That's right
Обсуждают сегодня