标签: android android-recyclerview adapter
我是编程新手。您能解释一下notifyDataSetChanged()和Adapter.this.notifyDataSetChanged()之间的区别吗?我认为这与上下文相关吗? 我想知道我应该为RecyclerView更改使用哪一个。
notifyDataSetChanged()
Adapter.this.notifyDataSetChanged()
答案 0 :(得分:0)
它们可能是相同的。 this是用于指定当前对象的Java关键字,在该方法之前必须指定Adapter.this的唯一原因是,如果您在内部类中,其中this会引用某些内容其他。
this
Adapter.this