Length of array and string

Length of array and string

Array length

The length of the array calls the length property of the array

int[] arr={
    
    1,3};
int length=arr.length;

String length

The length of the string calls the length() method of the array

String str="hello";
        int length=str.length();

Guess you like

Origin blog.csdn.net/qq_36976201/article/details/112255325