android Button.java类中的一个方法不明白

https://img4.mukewang.com/5cb82cad000128b407560399.jpg如图 Button.class.getName()是什么意思?

Qyouu
浏览 478回答 4
4回答

暮色呼如

返回系统控件Button的类名:android.widget.Button

有只小跳蛙

 /**     * Returns the name of the class represented by this {@code Class}. For a     * description of the format which is used, see the class definition of     * {@link Class}.     */    public String getName() {        String result = name;        return (result == null) ? (name = getNameNative()) : result;    }返回此Class对象所代表的实体的名称,就是 Button

慕田峪4524236

楼上正解,类似于this.getClass().getSimpleName()

慕后森

这和Button无关,这是Java的知识。用来获取类名用的。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java