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:
What is the difference between Class.this and this in Java

I know what this means in Java, but sometimes I see something like SomeClass.this, what does it mean? does it refer to a static class filed? Could you please explain with an example?

Thanks.

share|improve this question

marked as duplicate by skaffman, Jeremy Heiler, mre, CoolBeans, Mark Robinson Aug 8 '11 at 20:06

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.

2 Answers

up vote 2 down vote accepted

It is a way code in a method of your inner class can refer to the encompassing outer class instance.

share|improve this answer

I know one use is to refer to the outer object.

share|improve this answer

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