Du verwendest einen veralteten Browser. Es ist möglich, dass diese oder andere Websites nicht korrekt angezeigt werden. Du solltest ein Upgrade durchführen oder ein alternativer Browser verwenden.
Der Feldname wird häufig auch als Referenz auf das Feld
bezeichnet.
Wenn statt der Kopie des Feldnamens (=„Hausnummer“) eine Kopie
des Inhalts (=„Haus“) gewünscht wird, so müssen die Werte aller
Komponenten kopiert werden.
Dies ist das sog. Clonen des Feldes.
Hierfür gibt es in Java eine clone-Anweisung.
Diese Kopie der Inhalte eines Feldes erfordert einen Aufwand, der
proportional zur Größe des Feldes ist.
sooooo für String[] Felder funzt das ganze auch 1a ... aaaaaaaaaaaaaaber hier nicht :
habe Keine Ahnung warum, denn die Klasse String überschreibt die clone() Methode von der Klasse Object NICHT (s. API).
Anbei der Code viel spaß beim testen :
Code:
class Person extends Object {
String name;
public Person (String name) {
this.name = name;
}
public String toString () {
return "Mein Name ist " + name;
}
}
public class Personen {
public static void main (String[] args) {
Person[] personal = {new Person("Gamer"), new Person("Rul0r")};
Object Temp = personal.clone();
Person[] perso = ((Person[])Temp);
perso[0].name = "Noob";
Person[] perso2 = (Person[])personal.clone();
perso2[1].name = "Lamer";
System.out.println (personal[0]);
System.out.println (personal[1]);
// protected Fehler kommt bei Objekt (z.B. Person) clonen :
//Person p = new Person("Bauer");
//Person c = (Person)p.clone();
}
}
/*Für String Felder geht clonen !!
*
*Methods inherited from class java.lang.Object
*clone
*
*=> selbe Methode ! wurde nicht nicht überschrieben !*/
clone() has protected access in java.lang.Object Person c = (Person)p.clone();
Person muss das interface Cloneable implementieren (leerer Marker) und die protected clone durch eine public "ersetzen", die dann super.clone() aufruf
clone ist komplex und wird manchmal als fundamental "kaputt" eingeschätzt (wegen zahlreicher Merkwürdigkeiten); auf jeden Fall mal die API lesen:
The method clone for class Object performs a specific cloning operation. First, if the class of this object does not implement the interface Cloneable, then a CloneNotSupportedException is thrown.
Note that all arrays are considered to implement the interface Cloneable
. Otherwise, this method creates a new instance of the class of this object and initializes all its fields with exactly the contents of the corresponding fields of this object, as if by assignment; the contents of the fields are not themselves cloned. Thus, this method performs a "shallow copy" of this object, not a "deep copy" operation.
public interface Cloneable
A class implements the Cloneable interface to indicate to the Object.clone() method that it is legal for that method to make a field-for-field copy of instances of that class.
Invoking Object's clone method on an instance that does not implement the Cloneable interface results in the exception CloneNotSupportedException being thrown.
By convention, classes that implement this interface should override Object.clone (which is protected) with a public method. See Object.clone() for details on overriding this method.
weil clone eine Shallow-Copy macht, d.h. eine Kopie der Orndung null
wenn du ein Object[] per clone verdoppelst, dann sind im neuen Array die Referenzen auf die gleichen Objekte wie im Original
=> in der Standard-Implementiereung von Object.clone() wird nicht der Objektgraph dupliziert, sondern einfach jedes Feld kopiert (d.h. der Klon verweist auf die gleichen "objekte" wie das Original)