length of each element in an array Java

后端 未结 5 497
不思量自难忘°
不思量自难忘° 2021-01-29 15:41

Here is what I\'m trying to use. The method .length doesn\'t work for anything I try, so I\'m not even sure where to begin.

import java.util.ArrayList;

public c         


        
5条回答
  •  旧时难觅i
    2021-01-29 16:46

    Use following code:

    public static List lengths(List list) {
        List lengthList = new ArrayList();
        for (String nums: list) {
            int len = nums.length();
            lengthList.add(len);
            System.out.println(len);  
        }    
        return lengthList;
    }
    

提交回复
热议问题