java取字符串的第一个字符串,从Java中的字符串中获取第一个字母的最佳方法是什么,以长度为1的字符串形式返回?...

Assume the following:

String example = "something";

String firstLetter = "";

Are there differences to be aware of with the following ways of assigning firstLetter that could impact performance; which would be best, and why?

firstLetter = String.valueOf(example.charAt(0));

firstLetter = Character.toString(example.charAt(0));

firstLetter = example.substring(0, 1);

The reason the first letter is being returned as a String is that this is being run in Hadoop, and a string is required to assign to a Text type, firstLetter will be output as a key from a map() method, for example:

public class FirstLetterMapper extends Mapper {

String line = new String();

Text firstLetter = new Text();

IntWritable wordLength = new IntWritable();

@Override

public void map(LongWritable key, Text value, Context context)

throws IOException, InterruptedException {

line = value.toString();

for (String word : line.split("\\W+")){

if (word.length() > 0) {

// ---------------------------------------------

// firstLetter assignment

firstLetter.set(String.valueOf(word.charAt(0)).toLowerCase());

// ---------------------------------------------

wordLength.set(word.length());

context.write(firstLetter, wordLength);

}

}

}

}

解决方案

Performance wise substring(0, 1) is better as found by following:

String example = "something";

String firstLetter = "";

long l=System.nanoTime();

firstLetter = String.valueOf(example.charAt(0));

System.out.println("String.valueOf: "+ (System.nanoTime()-l));

l=System.nanoTime();

firstLetter = Character.toString(example.charAt(0));

System.out.println("Character.toString: "+ (System.nanoTime()-l));

l=System.nanoTime();

firstLetter = example.substring(0, 1);

System.out.println("substring: "+ (System.nanoTime()-l));

Output:

String.valueOf: 38553

Character.toString: 30451

substring: 8660

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值