存储从Java for Android中的函数返回的值

时间:2022-07-25 21:16:13

I have a function getString(i,j) returning string value for every i,j and I wish to store it in some data structure. Below is the code.

我有一个函数getString(i,j)为每个i,j返回字符串值,我希望将它存储在某些数据结构中。以下是代码。

for(int i=0; i<16; i++)
   for(int j=0; j<16; j++)
     Log.d(TAG,this.objNew.getString(i,j));

objNew is the object helping to access getString function in another file. (this.objNew.getString(i,j)) returns a string value i.e. it will return 256 string values when executed in loop.

objNew是帮助访问另一个文件中的getString函数的对象。 (this.objNew.getString(i,j))返回一个字符串值,即在循环中执行时将返回256个字符串值。

I tried String[][] arr i.e. arr[i][j] = this.objNew.getString[i][j], but it didn't work.

我试过String [] [] arr,即arr [i] [j] = this.objNew.getString [i] [j],但它没有用。

Any ideas how can I store into some data structure and display the values.

任何想法如何存储到某些数据结构并显示值。

Please suggest

1 个解决方案

#1


0  

try this:

int[][] ints=new int[16][16];
for(int i=0;i<16;i++)
    for(int j=0;j<16;j++)
        ints[i][j]=objNew.getString[i][j];

#1


0  

try this:

int[][] ints=new int[16][16];
for(int i=0;i<16;i++)
    for(int j=0;j<16;j++)
        ints[i][j]=objNew.getString[i][j];