conversion d'object de tableaux en int

conversion d'object de tableaux en int - Java - Programmation

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

Reply

Marsh Posté le 24-08-2004 à 11:47:43   

Reply

Marsh Posté le 24-08-2004 à 11:50:42    

Y'a quoi dans ton tableau index ? Des Integer ?

Reply

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() ;

Reply

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();
                   ^

Reply

Marsh Posté le 24-08-2004 à 13:09:05    

((Integer)index[k]).intValue();

Reply

Marsh Posté le 24-08-2004 à 16:21:52    

merci

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed