英文:
Java variables name and reserved words
问题
"lenght" 是 Java 中的一个预定义变量。但是 Java 用户可以在我们自己的类中使用 "lenght" 作为变量名。
示例:
int length = 10;
- 为什么 length 不是 Java 中的保留字?
- 在类中使用 length 作为变量名是否可以?
英文:
"lenght" is a predefined variable in java. But Java users can use "lenght" is a variable name in our own classes.
Example:
int length = 10;
- Why length is not a reserved word in java?
- Is it ok to use length as a variable name in a class?.
答案1
得分: 1
Length是数组的实例变量,只要您不在某个数组的上下文中使用它,它就不是保留字。字符串类有一个名为length的实例方法,但同样不是保留字。
英文:
Length is an instance variable for arrays, so as long as you don't use in the context of someArray.length, it is not reserved. The string class has an instance method called length, but again, not reserved.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论