我了解#ifndef _NO_OLDNAMES
typedef _ssize_t ssize_t;
#endif
注释和抽象方法。但是我的需求略有不同。
@CheckResult
现在我想要的是,皮棉(Android studio)应该像“ { Class MyCustomAlert {
/* blah blahs */
@MustCall
public void show() {
// this method shows the dialog
}
}
...
MyCustomAlert alert = new MyCustomAlert();
...
”一样警告我
这意味着You forgot to call method 'show()'
类的每个新对象都必须调用方法MyCustomAlert
。
Android中是否有show()
或类似的注释?