ArrayList是List的具体类型,在分配好的数组中存储内容,而LinkedList使用的是链表实现。
ArrayList is a particular type of list, storing its contents in an allocated array, whereas LinkedList USES a linked-list implementation instead.
现在我们知道的大小,我们可以继续检索数据。首先,我们需要分配一个字节数组来存储数据。
Now that we know the size, we can move on to retrieving the data. First, we need to allocate a byte array to store the data.
应用推荐