I'm trying to make a game, in order not to write the same methods and functions, I'm using covariance and wildcards in Java to be able to re-use to code later for other type of (similar) games. My current problem is that I can't add a Piece to my ArrayList.
How can I do that ?
Here's my current Java version, on Linux. openjdk version "10.0.2" 2018-07-17 OpenJDK Runtime Environment (build 10.0.2+13-Ubuntu-1ubuntu0.18.04.4) OpenJDK 64-Bit Server VM (build 10.0.2+13-Ubuntu-1ubuntu0.18.04.4, mixed mode)
I tried many little things, nothing conclusive. Maybe I should try to cast the Dominos?
These are the classes I currently have :
Class Deck :
import java.util.*;
import java.util.ArrayList;
import java.util.List;
import java.util.Collections;
public class Deck {
private List<? extends Piece> deck;
private int taille;
public Deck(){
this.deck = new ArrayList<Domino>();
for (int i = 0; i < 7; i++){
for (int j = i; j < 7; j++){
Domino d = new Domino(i,j);
deck.add(d);
}
}
this.taille = deck.size();
}
public List<? extends Piece> getDeck(){
return this.deck;
}
public int tailleActuelle(){
return this.deck.size();
}
public int tailleDepart(){
return this.taille;
}
public void melangeDeck(){
Collections.shuffle(deck);
}
public String toString(){
return "Deck de Dominos : \nTaille de départ : "+this.tailleDepart()+
"\nTaille actuelle : "+this.tailleActuelle();
}
public void printDominosDeck(){
for (Domino d : deck){
System.out.print(d+" ");
}
}
}
Class Piece :
public class Piece {
private boolean revele;
public Piece(){
this.revele = false;
}
public boolean estRevele(){
return this.revele;
}
public void pieceRevele(){
if (!this.revele) this.revele = !this.revele;
}
}
Class Domino :
public class Domino extends Piece {
//implements Comparable<Domino>
private int faceD, faceG;
public Domino(){
super();
this.faceD = 0;
this.faceG = 0;
}
public Domino(int d, int g){
super();
this.faceD = d;
this.faceG = g;
}
public int getValeurDroite(){
return this.faceD;
}
public int getValeurGauche(){
return this.faceG;
}
public int sommeDesFaces(){
return this.faceD+this.faceG;
}
public String toString(){
return "["+this.faceD+" | "+this.faceG+"]";
}
}
For now, I have the following errors :
Deck.java:17: error: incompatible types: Domino cannot be converted to CAP#1
deck.add(d);
^
where CAP#1 is a fresh type-variable:
CAP#1 extends Piece from capture of ? extends Piece
Deck.java:46: error: incompatible types: CAP#1 cannot be converted to Domino
for (Domino d : deck){
^
where CAP#1 is a fresh type-variable:
CAP#1 extends Piece from capture of ? extends Piece
Note: Some messages have been simplified; recompile with -Xdiags:verbose to get full output
2 errors
What I'm trying to achieve is to be able to add my Dominos normally to the ArrayList. And possibly later on other type of game pieces !
Thank you
Did you see this other SO answer?
Changing ? extends Piece
to just Piece
at least compiles for me:
import java.util.*;
import java.util.ArrayList;
import java.util.List;
import java.util.Collections;
public class Deck {
private List<Piece> deck = new ArrayList<Piece>();
private int taille;
public Deck(){
this.deck = new ArrayList<Piece>();
for (int i = 0; i < 7; i++){
for (int j = i; j < 7; j++){
Domino d = new Domino(i,j);
deck.add(d);
}
}
this.taille = deck.size();
}
public List<? extends Piece> getDeck(){
return this.deck;
}
public int tailleActuelle(){
return this.deck.size();
}
public int tailleDepart(){
return this.taille;
}
public void melangeDeck(){
Collections.shuffle(deck);
}
public String toString(){
return "Deck de Dominos : \nTaille de départ : "+this.tailleDepart()+
"\nTaille actuelle : "+this.tailleActuelle();
}
public void printDominosDeck(){
for (Piece d : deck){
System.out.print(d+" ");
}
}
}