本帖最后由 It's_Zero 于 2012-5-11 22:56 编辑
- public class StringTest
- {
- public static void main(String[] args)
- {
- String str = " abcdefg ";
- String str1 = "aBcdefg";
- char[] ch ={'a','d','f'};
- double d = 2.3;
-
- sop(String.valueOf(ch));//valueOf是String的一静态个方法 ,静态方法调用 有两种方式 1 对象 . 方法名 2 类名 . 方法名
- /*
- public String(char value[]) {
- int size = value.length;
- this.offset = 0;
- this.count = size;
- this.value = Arrays.copyOf(value, size);
- }
- 通过这个 String.valueOf (char)最后得到 字符数组
- */
- }
- public static void sop(Object obj)
- {
- System.out.println(obj);
- }
-
- }
复制代码 |