hab's ;-)
Das ist gut. ;D
Sah nach einer irgendwie nicht so spannenden Aufgabe aus.
ein allgemeiner Tipp:
Use StringBuffer for string concatenation
Because Java Strings are immutable, usage of the + operator to concatenate strings results in the creation of many temporary objects. Calling explicitely StringBuffer.append eliminates those temporary objects and may result in a large performance increase.
I also tend to believe it is simply more correct to use StringBuffer.append when concatenating strings, rather than the + operator. But maybe your reason is because it's faster than String.+ !
Wenn du Strings concenatierst benutze besser die StringBuffer Klasse und da die append-Methode.
String a = "Das "; // Objekt 1
String b = "ist nicht so gut"; // Objekt 2
a = a + b; // Objekt 3:: hier wird ein neues Objekt erzeugt ! Strings sind unveränderlich (inmutable)
// String Buffer
StringBuffer a = new StringBuffer("Das"); //Objekt 1
String b = "ist meist besser"; //Objekt 2
a.append(b); // Objekt 1 !
Mit der toString() -Methode kannst du einen StringBuffer in einen String umwandeln.
Mir ist noch was aufgefallen.
DU BENUTZT AUCH KEINE RECYCLE METHODE. DAS IST KEINE GUTE IDEE. Führt zwangsläufig zu instabilen code. Mehr am Wochenende.
Gruß Axel