using String Type in java




This video tutorial explains about the String types available in java programming.

You will learn how to create an object to store string values, how to store string values in the object, how to use the available methods that are gonna work on strings in detail with examples.

Source Code for this Video Tutorial

package LearningJava;

public class Fish {

 public static void main(String[] args) {
  
 String name = "anjali";
 name += "anil";
 
 name = name.concat("Shetty");
 
 
 System.out.println(name);

 }

}