java string methodds code example
Example 1: String... java
//Object... (here String...) means that you can give
//in parameter one or many objects of same type
func();
func("arg1", "arg2", "arg3");
String[] args = new String[]{"arg1", "arg2", "arg3"}
func(args);
void func(String... args);
Example 2: string method example in java
public String concat(String s)
String x = "book";
System.out.println( x.concat(" author") ); // output is "book author"