Bonjour
j'ai un Vector<Vector<String>> transrule; comment je peux acceder aux positions [cnt][2]
cnt de 0 jusqu'a size().transrule
Version imprimable
Bonjour
j'ai un Vector<Vector<String>> transrule; comment je peux acceder aux positions [cnt][2]
cnt de 0 jusqu'a size().transrule
Comme ca ?Code:
1
2
3
4 for (int cnt = 0; cnt < transrule.size(); cnt++) { String str = transrule.get(cnt).get(2); }
Merci ca marche
Mais je t'en pries, bonne continuation.