Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
When do you use Java’s @Override annotation and why?

I see a lot of @override element in many codes and I don't exactly know what it means. for example:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}

I don't know what it means and I don't understand what am I overriding. Can someone please help me?

share|improve this question

marked as duplicate by newfurniturey, ρяσѕρєя K, NimChimpsky, Ahmad, Yogendra Singh Nov 7 '12 at 15:51

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

It means you are overriding a method of your parent class (the one you extend from).

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.