public class Example{
String str=new String("good");
StringBuffer sb = new StringBuffer("ikla");
char[]ch={'a','b','c'};
public static void main(String args[]){
Example ex = new Example();
ex.change(ex.str, ex.ch,ex.sb);
System.out.print(ex.str+"and");
System.out.print(ex.ch);
System.out.println(ex.sb);
}
public static void change(String str,char ch[],StringBuffer sb){