conversion d'object de tableaux en int - Java - Programmation
Marsh Posté le 24-08-2004 à 12:14:20
Si j'ai bien compris tu veux mettre le contenu du tableau index dans tselectioncol.
tselectioncol ne peut contenir que des int.Donc tu fais bien de vouloir utiliser une méthode du style intValue pour retourner des int. De plus, il faut que ton index contienne bien comme objet des Integer.si c le cas essaye plutot
tselection[k] = (Integer)index[k].intValue() ;
Marsh Posté le 24-08-2004 à 13:05:43
merci mais c'est pas ça
voici ce que me met le compilateur
Logiciel7.java:329: cannot resolve symbol
symbol : method intValue ()
location: class java.lang.Object
tselectioncol[k] = (Integer)index[k].intValue();
^
Logiciel7.java:329: incompatible types
found : java.lang.Integer
required: int
tselectioncol[k] = (Integer)index[k].intValue();
^
Marsh Posté le 24-08-2004 à 11:47:43
bonjour!
c'est une question de débutant mais je comprends mal.J'ai essayé plusieurs méthodes ...
Object index[]= new Object[30];
int tselectioncol[] = new int[30];
for (k = 0; k < index.length ; k++){
tselectioncol[k] = Object.intValue(index);
//tselectioncol[k] = Object.toString.parseInt(index);
//tselectioncol[k] = Integer.parseInt(toString(index));
//tselectioncol[k] = Integer.parseInt(index.toString());
}
merci