本帖最后由 时光♪微凉 于 2014-6-18 23:21 编辑
- public static void main(String[] args) {
- List<String> str = new ArrayList<String>();
- str.add("11");
- str.add("22");
- str.add("33");
- String[] arrays = toArrays(str);
- for (String string : arrays) {
- System.out.println(string);
- }
- }
-
- public static <T> T[] toArrays(List<T> list){
- if(list==null)
- return null;
- @SuppressWarnings("unchecked")
- T[] t = (T[])new Object[list.size()];
- for (int i = 0; i < list.size(); i++) {
- t[i]=list.get(i);
- System.out.println("Why");
- }
- return t;
- }
复制代码
|
|