Iterate through string array in Java

后端 未结 10 901
逝去的感伤
逝去的感伤 2020-11-30 01:21

I have String array with some components, this array has 5 components and it vary some times. What I would like to do is to iterate through that array and get the first comp

10条回答
  •  既然无缘
    2020-11-30 02:15

    You have to maintain the serial how many times you are accessing the array.Use like this

    int lookUpTime=0;
    
        for(int i=lookUpTime;i

提交回复
热议问题