Niektóre (szybkie) testy wydajności podsumowujące różne opcje, ale nie to, że to naprawdę ma znaczenie # mikrooptymalizacja (przy użyciu rozszerzenia linqpad )
Opcje
void Main()
{
object objValue = null;
test(objValue);
string strValue = null;
test(strValue);
}
// Define other methods and classes here
void test(string value) {
new Perf<string> {
{ "coallesce", n => (value ?? string.Empty).ToString() },
{ "nullcheck", n => value == null ? string.Empty : value.ToString() },
{ "str.Format", n => string.Format("{0}", value) },
{ "str.Concat", n => string.Concat(value) },
{ "string +", n => "" + value },
{ "Convert", n => Convert.ToString(value) },
}.Vs();
}
void test(object value) {
new Perf<string> {
{ "coallesce", n => (value ?? string.Empty).ToString() },
{ "nullcheck", n => value == null ? string.Empty : value.ToString() },
{ "str.Format", n => string.Format("{0}", value) },
{ "str.Concat", n => string.Concat(value) },
{ "string +", n => "" + value },
{ "Convert", n => Convert.ToString(value) },
}.Vs();
}
Prawdopodobnie ważne jest, aby wskazać, że Convert.ToString(...)
zachowa ciąg pusty.
Wyniki
Obiekt
- nullcheck 1,00x 1221 taktów minęło (0,1221 ms) [przy 10 tys. powtórzeń, 1,221E-05 ms na]
- coallesce 1,14x 1387 taktów minęło (0,1387 ms) [przy 10 tys. powtórzeń, 1,387E-05 ms na]
- ciąg + 1,16x 1415 taktów minęło (0,1415 ms) [przy 10 tys. powtórzeń, 1,415E-05 ms na]
- str.Concat 1,16x 1420 taktów minęło (0,142 ms) [przy 10 tys. powtórzeń, 1,42E-05 ms na]
- Konwersja 1,58x 1931 taktów, które upłynęły (0,1931 ms) [w 10 tys. Powtórzeń, 1,931E-05 ms na]
- Str. format 5,45x 6655 taktów minęło (0,6655 ms) [przy 10 tys. powtórzeń, 6,655E-05 ms na]
Strunowy
- nullcheck 1,00x 1190 taktów minęło (0,119 ms) [przy 10 tys. powtórzeń, 1,19E-05 ms na]
- Konwertuj 1,01x 1200 taktów, które upłynęły (0,12 ms) [przy 10 tys. Powtórzeń, 1,2 E-05 ms na]
- ciąg + 1,04x 1239 taktów minęło (0,1239 ms) [przy 10 tys. powtórzeń, 1,239E-05 ms na]
- coallesce 1,20x 1423 taktów minęło (0,1423 ms) [przy 10 tys. powtórzeń, 1,423E-05 ms na]
- str.Concat 4,57x 5444 taktów minęło (0,5444 ms) [przy 10 tys. powtórzeń, 5,444E-05 ms na]
- Str. format 5,67x 6750 taktów minęło (0,675 ms) [przy 10 tys. powtórzeń, 6,75E-05 ms na]