标签: java android
我想知道这段代码中的内容和作用(<)。
Button btn = new Button(this);
答案 0 :(得分:5)
this指的是当前对象,可能是Activity。 Activity扩展Context,并以Context传递给Button constructor。
this
Activity
Context
Button
答案 1 :(得分:4)
它是对Context