62,635
社区成员




public static void sop(Object obj)
{
System.out.println(obj);
}
public static void main(String[]args)
{
String st = "this is a string.";
char [] chr = st.toCharArray();
System.out.println(chr);
System.out.println("chr="+chr);
sop("chr="+chr);
}