how length function works in java code example

Example 1: length vs 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

Example 2: String length() method in java

// String length() method example
public class StringLengthJava
{
   public static void main(String[] args)
   {
      String str1 = "flowerbrackets";
      String str2 = "helloworld";
      System.out.println("string length : " + str1.length());
      System.out.println("string length : " + str2.length());
   }
}

Tags:

Java Example