美文网首页
Name non-constant identifiers us

Name non-constant identifiers us

作者: 悟饭哪 | 来源:发表于2020-12-03 16:27 被阅读0次

我在给一个常量命名的时候报了这个错Name non-constant identifiers using lowerCamelCase,我的代码是这样的,final String ma_server_url = 'xxxxx'

报错原因:

定义常量时没有使用驼峰。

解决方案:

把常量改成驼峰格式就可以了,像我就把 ma_server_url改成maServerURL

Have fun.

相关文章

网友评论

      本文标题:Name non-constant identifiers us

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