在Java计算器程序中出现错误:“字段’(按钮)’可能是’final’。”

huangapple go评论66阅读模式
英文:

Error in java calculator programme "Field '(button)' may be 'final'

问题

我正在使用Java创建图形用户界面计算器。

我在使用IDEA。

程序成功运行,但是显示了一个错误,错误内容是Field '(任何字段)'可能是'final'......

我不知道这是什么。

这里是错误的截图

英文:

I am creating gui calculator in Java

I am using IDEA

programme runs successfully but it shows an error that Field '(any field)' may be 'final'......

I don't know what it is

Here is image of Error

答案1

得分: 1

这是一个警告/信息消息,告诉您最好将这些变量声明为final。每当您的集成开发环境(IDE)发现您有变量没有被赋值,除了在初始化时,它可能会给您这样的警告/信息消息,以便在需要时可以考虑调整代码。我相信您已经理解了Java中final关键字的概念。

英文:

It's a warning/information message telling you that these variables are better to be declared as final. Whenever your IDE finds cases where you have not assigned anything to a variable, except at the time of initialization, it may give you such a warning/information message so that you can consider adjusting the code if required. I believe, you already understand the concept of the keyword, final in Java.

huangapple
  • 本文由 发表于 2020年9月5日 21:21:54
  • 转载请务必保留本文链接:https://go.coder-hub.com/63754364.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定