怎么样使用安卓指令代码
发布网友
发布时间:2022-05-05 19:12
我来回答
共1个回答
热心网友
时间:2022-06-27 23:18
是的,常见的有以下2种,某些情况,比较关键的代码 可以使用/**/或者//注释
页面注释
/**
Created by IntelliJ IDEA.
User: xxxx
Date: 15-05-12
To change this template use File | Settings | File Templates.
*/
方法注释,方法用处,参数名
/**
* Instantiates a new SlidingMenu.
*
* @param context
* the associated Context
* @param attrs
* the attrs
* @param defStyle
* the def style
*/
public SlidingMenu(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}