美文网首页
The value of the local variable

The value of the local variable

作者: 海人为记 | 来源:发表于2018-07-12 22:03 被阅读8次

当报这个错误的时候The value of the local variable sb7 is not used
是因为定义的变量在代码中并未使用且无法访问。java在编译的时候会出现这样的警告,因此我们要在代码之前加上 @SuppressWarnings("unused"),加上这个注解之后就是告诉编译器,忽略这些警告,编译的过程中将不会出现这种类型的警告

相关文章

网友评论

      本文标题:The value of the local variable

      本文链接:https://www.haomeiwen.com/subject/zahdpftx.html