Netbeans注释错误
NetBeans 不接受我的代码。为什么? 查看图片
NetBeans do not accept my code. Why? See the pic.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
NetBeans 不接受我的代码。为什么? 查看图片
NetBeans do not accept my code. Why? See the pic.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
您需要导入您正在使用的注释。
例如,导入 org.whatever.package.contains.ServiceProvider;
You need to import the annotations you're using.
E.g, import org.whatever.package.contains.ServiceProvider;
您需要将代码从 更改
为
注意:如果您已声明之间的依赖关系,则可以利用“源”菜单 (CTRL-SHIFT-I/Clover-SHIFT-I) 中的“修复导入”项来自动处理第二个项目您的模块和 NetBeans 平台实用程序 API 模块
You need to change the code from
into
Note: You can leverage the Fix Imports item from the Source menu (CTRL-SHIFT-I/Clover-SHIFT-I) to take care of the second one automatically, if you have declared the dependeny between your module and the NetBeans platform Utilities API module
也许您缺少导入。可以导入“ServiceProvider”吗?如果不了解更多关于您的项目设置的信息,很难确定,但这是我的第一个猜测。
Perhaps you are missing an import. Can you import "ServiceProvider"? It's hard to know for sure without know more about your project setup, but that's my first guess.