forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
468 B
23 lines
468 B
package com.fanruan.api.cal.namespace; |
|
import java.util.Collection; |
|
|
|
/** |
|
* 生成一个链表类 |
|
* */ |
|
public class FArray<T> extends com.fr.general.FArray{ |
|
public FArray(){ |
|
|
|
} |
|
/** |
|
* 通过使用一个无需集合生成的链表类 |
|
* */ |
|
public FArray(Collection<T> collection) { |
|
super(collection); |
|
} |
|
/** |
|
* 通过使用一个数组生成的链表类 |
|
* */ |
|
public FArray(T[] array) { |
|
super(array); |
|
} |
|
}
|
|
|