1
在C#在Visual Studio中我可以如何在Android Studio中添加編譯器警告?
#warning The following method needs refactoring for clarity
什麼是Android的工作室相當於做到這一點?
在C#在Visual Studio中我可以如何在Android Studio中添加編譯器警告?
#warning The following method needs refactoring for clarity
什麼是Android的工作室相當於做到這一點?
嘗試是這樣的:@SuppressWarnings("your message")
例如
@SuppressWarnings("your message")
myMethod(){
body;
}
也看這個問題:
How to intentionally cause a custom java compiler warning message?