A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

class SubRep {               
        public static void main(String[] args) {
                System.out.println(getPropertyGetMethodName("name"));
        }
        /*public static String getPropertyGetMethodName(String property) {
                return ("get".concat(property.substring(0,1).toUpperCase().concat(property.substring(1))));
        }*/
       
        /*public static String getPropertyGetMethodName(String property) {
                return ("get".concat(property.replace('n','N')));
        }*/
       
        public static String getPropertyGetMethodName(String property) {
                StringBuilder sb = new StringBuilder("get");
                sb.append(property.toUpperCase().substring(0,1)).append(property.substring(1));
                return sb.toString();
               
        }
       
}

点评

赞  发表于 2016-3-17 18:31
好  发表于 2016-3-16 22:55

14 个回复

倒序浏览
楼主,好敬业哦,能够学以致用,向楼主学习,分享快乐
回复 使用道具 举报
楼主可否加上注释?
回复 使用道具 举报
中间注释掉是干嘛的
回复 使用道具 举报
有点看晕了~
回复 使用道具 举报

? extends  E 还好理解,,,但是? super E  就不怎么好理解了
回复 使用道具 举报
去掉中间注释掉看就不乱了,注释是写错的东西吗
回复 使用道具 举报
方法名起的真6
回复 使用道具 举报
show 一个 好样的
回复 使用道具 举报
就是把输入单词转换为首字母大写,然后再在前面加上小写的get,在转换为字符串
回复 使用道具 举报
看不懂哦
回复 使用道具 举报
as9600 发表于 2016-3-16 23:41
中间注释掉是干嘛的

上边都是为实现将 “name”转换成 “getName”的方法,只不过我用了三种实现方式,注释部分是两种方法喽!{:2_32:}
回复 使用道具 举报
就是我 发表于 2016-3-18 11:24
就是把输入单词转换为首字母大写,然后再在前面加上小写的get,在转换为字符串 ...

赞!回答正确。。。。。。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马