之前无意中看到有人提到StartWith和EndWith效率比较低,今天恰好有用到这样的场景,于是写了个测试验证一下。
该示例仅在比较字符串首尾单个字符,用途有限。
var str = "\"h放大快来和发放咖啡里卡的时间累计开发哈独立思考后11111111111111\""; Stopwatch watch = new Stopwatch(); watch.Start(); for (int i = 0; i < 1000000; i++) { var s = str.Length > 0 ? str[0] == ':' : false; var e = str.Length > 0 ? str[str.Length - 1] == ':' : false; } watch.Stop(); Console.WriteLine("直接取字符比较耗时:{0}",watch.ElapsedMilliseconds); watch.Reset(); watch.Start(); for (int i = 0; i < 1000000; i++) { var s = str.StartsWith("\""); var e = str.EndsWith("\""); } Console.WriteLine("调用字符串方法耗时:{0}", watch.ElapsedMilliseconds);
测试结果为:
直接取字符串比较耗时:7
调用字符串方法耗时:213
差别还是有一点,在比较单个字符的时候,推荐直接使用 string[int index] .