在Visual Studio的C#中,我可以使用
执行此操作#warning The following method needs refactoring for clarity
Android Studio的等效内容是什么?
答案 0 :(得分:1)
尝试这样的事情:例如@SuppressWarnings("your message")
@SuppressWarnings("your message")
myMethod(){
body;
}
另外,看看这个问题:
How to intentionally cause a custom java compiler warning message?