What is difference between length and length() method in java

length() : In String class we have length() method which is used to return the number of characters in
string.
Ex : String str = โ€œHello Worldโ€;
System.out.println(str.length());
Str.length() will return 11 characters including space.
length : we have length instance variable in arrays which will return the number of values or objects in
array.
For example :
String days[]={โ€ Sunโ€,โ€Monโ€,โ€wedโ€,โ€thuโ€,โ€friโ€,โ€satโ€};
Will return 6 since the number of values in days array is 6.


Posted

in

Tags:

Comments

Leave a Reply