android中TestActivity.this.sendBroadcast(intent)
這個是 類.this方法嗎還是對象.this.方法
如何理解這條語句呢
明白了,你有一個內部類
比如
class A
{
int x;
class B
{
int x;
void foo()
{
int y = x; // 不知道這個x是哪個。
B.this.x 內部類的
A.this.x 外部類的
}
}
}