Ich habe eine Karte, wo Coords wie so definiert:Java String von Karte von XY-Koordinaten
class Coords {
int x;
int y;
public boolean equals(Object o) {
Coords c = (Coords)o;
return c.x==x && c.y==y;
}
public Coords(int x, int y) {
super();
this.x = x;
this.y = y;
}
public int hashCode() {
return new Integer(x+"0"+y);
}
}
(. Nicht sehr gut, ich weiß, bitte necken mich nicht) Wie kann ich ein jetzt erstellen String, wo die Zeichen aus dieser Karte abgebildet, zum Beispiel:
Map<Coords, Character> map = new HashMap<Coords, Character>();
map.put(new Coords(0,0),'H');
map.put(new Coords(1,0),'e');
map.put(new Coords(2,0),'l');
map.put(new Coords(3,0),'l');
map.put(new Coords(4,0),'o');
map.put(new Coords(6,0),'!');
map put(new Coords(6,1),'!');
somehowTransformToString(map); //Hello !
// !
Danke,
Isaac Waller
(Anmerkung - es ist nicht Hausaufgaben)
Was ist Ihre Ausgabe? STD-Konsole? –
Eigentlich ein Textfeld-Steuerelement. –
(EditText auf Android) –