帮忙看看着段代码问题出在哪儿?
- [size=4]package com.heima.test;
- public class Dome4_change {
- /**
- 需求:把一个字符串的首字母转成大写,其余为小写。(只考虑英文大小写字母字符)
- //char charAt(int index):获取指定索引位置的字符
-
- */
- public static void main(String[] args) {
- String x = "wangnima";
- for (int i = 0; i < x.length(); i++) {
- if (i==0) {
- char y[] ={x.charAt(i)};
- String z = y.toString();
- System.out.print( z.toUpperCase());
- }else{
- System.out.print(x.charAt(i));
- }
- }
- }
- }[/size]
复制代码为什么编译运行后是 [C@1AC4F3Eangnima
不是我想要的首字母大写?????
|
|