unformatted = unformatted.replaceAll(seperator, "\n");
Netbeans gives me the warning:
The assigned variable is never used
What does this mean?
unformatted = unformatted.replaceAll(seperator, "\n");
Netbeans gives me the warning:
The assigned variable is never used
What does this mean?
这意味着在为该变量赋值后,您没有对该变量执行任何操作。例如,您不会返回它、使用它执行计算、将其传递给方法或其他任何东西。它基本上意味着变量在被赋值后没有被使用。
这只是您的 IDE 不断检查的标准规则,以帮助您避免不需要的变量声明,维护干净的代码。
The assigned variable is never used
线路本身自我解释。
因为它unformatted
被初始化了,但从未使用过,因此不需要初始化。
它可以帮助您使您的代码更干净,并摆脱不必要的内存浪费。
在为变量赋值后,您还没有使用该变量
这只是意味着您的unformatted
变量永远不会被读取。