Today I decided to test different ways of concatenation. I chose concatenation with "+" operator, String.format(...) and StringBuilder. I wrote simple code for determining time in milliseconds for each test.
Source Code:
package test;
import java.util.Iterator;
import java.util.TreeSet;
public class Main {
private static final double A ...