dot length in java - finding its definition

前端 未结 7 1222
野趣味
野趣味 2021-01-03 00:31

In which class is the length field defined in Java (e.g. for array length)? Will I be able to see it defined say in Object class?

EDIT : Wh

7条回答
  •  既然无缘
    2021-01-03 01:04

    You need to be a bit more specific than that.

    A variable length can exist in any class. If you mean from the API then you are probably looking for the Array.

    Some classes have a length() method.

提交回复
热议问题