Jak przyspieszyć pętlę, która manipuluje ciągami w Javie? [Zamknięte]

Mam program, który buduje ciąg znaków w pętli, a mój program jest zbyt wolny. Uruchomienie trwa około 600 milisekundOblig1Test.oppgave7. Co można zrobić, aby to przyspieszyć?

Oblig1.toString:

public static String toString(int[] a, char v, char h, String mellomrom)
{
    String s ="";

    s += v;

    if(a.length != 0)
    {
        for(int i = 0; i < a.length-1; i++)
        {
                s += a[i] + mellomrom; 
        }

        s += a[a.length-1];
    }

    s += h;

    return s;
}

Oblig1Test:

public static int oppgave7()
{
   int[] b = new int[20000];
   long tid = System.currentTimeMillis();
   Oblig1.toString(b,' ',' '," ");
   tid = System.currentTimeMillis() - tid;

  if (tid > 40)
  {
    System.out.println("Oppgave 7: Metoden "
      + "er for ineffektiv. Må forbedres!");
  }
}

public static void main(String[] args) throws IOException
{
   oppgave7();
}

questionAnswers(4)

yourAnswerToTheQuestion