string reference java code example

Example 1: java string methods

static String valueOf(int i) - returns the string representation of the int 
argument.

Example 2: 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 3: string java

char data[] = {'a', 'b', 'c'};
     String str = new String(data);