I am just getting into functional programming and trying to understand when a class/property should be made mutable.
When working with a significant number of string concatenations, we know that it's better to use StringBuilder, for instance:
using System;
using System.Diagnostics;
using System.Text;
namespace ConsoleApplication3
{
internal class Program
{
private static string myStr;
private static readonly StringBuilder mySb = new StringBuilder();
private static void Main(string[] args)
{
Profile("+", 100000, () => myStr = myStr + "a"); // Takes 2236 ms
Profile("SB", 100000, () => mySb.Append("a")); // Takes 1 ms
}
private static void Profile(string description, int iterations, Action func)
{
// clean up
GC.Collect();
GC.WaitForPendingFinalizers();
GC.Collect();
// warm up
func();
Stopwatch watch = Stopwatch.StartNew();
for (int i = 0; i < iterations; i++)
{
func();
}
watch.Stop();
Console.Write(description);
Console.WriteLine(" Time Elapsed {0} ms", watch.ElapsedMilliseconds);
}
}
}
This is the commonly known case in which it's significantly more performant to concatenate strings via StringBuilder versus the + operator. My assumption is that StringBuilder achieves better performance by creating fewer strings.
Is there a balance between performance and immutability, or is this case an exception for some reason?