接口
public interface ISequentialList {
/**
* 获取长度
* @return
*/
int size();
/**
* 判空
* @return
*/
boolean isEmpty();