web-dev-qa-db-fra.com

tableau d'impression dans le journal de chat android

Comment puis-je imprimer la variable arr dans le journal pour voir les résultats du tableau merci,

 public void onClick(View v) {
     if(v.getId()==R.id.buttonone)
     {
          genrandom grandom =new genrandom();
          int[] arr=new int[50];
          arr = new  gen_random_number().genrandom(arr, yourXvalue);
     }
 }
34
user1760556

Vous pouvez utiliser Arrays.toString

Log.d("this is my array", "arr: " + Arrays.toString(arr));
// or
System.out.println("arr: " + Arrays.toString(arr));

Ou, si votre tableau est multidimensionnel, utilisez Arrays.deepToString ()

String[][] x = new String[][] {
    new String[] { "foo", "bar" },
    new String[] { "bazz" }
};
Log.d("this is my deep array", "deep arr: " + Arrays.deepToString(x));
// or
System.out.println("deep arr: " + Arrays.deepToString(x));
// will output: [[foo, bar], [bazz]]
115
Alex

Utilisation très simple pour chaque boucle beaucoup plus rapide que normale pour une boucle (incrémentielle).

for(String log : array)
{
  Log.v("Tag",log);
}
3
Mohd Mufiz

Vous pouvez utiliser pour chaque boucle

for(int x: arr){
Log.d(tag,"x:"+x);
}
0
Mohammad Ersan

Essayez de cette façon:

for (int i =0 ;i<arr.length;i++)
{
   Log.v("Array Value","Array Value"+arr[i]);
}
0
Mehul Ranpara

Essaye ça :

for (int i = 0; i < arr.length; i++) {
   Log.d(TAG, arr[i]);
}

Ce que nous faisons ici est d'itérer sur le tableau à l'aide de la boucle for pour imprimer logcat. La sortie du journal de chat peut être effectuée avec Log.d(..), Log.v(..), Log.i(..) ou Log.e(..). Voir plus ici .

0
Binoy Babu

Vous pouvez également essayer

 System.out.println()
0
Aditya K