C++ 实现 Native 层的 ArrayList

ArrayList 源码分析

    // 默认情况下,数组的初始化大小
    private static final int DEFAULT_CAPACITY = 10;

    // 空数组
    private static final Object[] EMPTY_ELEMENTDATA = {};

    // 空数组
    private static final Object[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {};

    // 数据
    transient Object[] elementData; // non-private to simplify nested class access

    // 数据大小
    private int size;
    
    // 给数组指定初始化大小
    public ArrayList(int initialCapacity) {
        if (initialCapacity > 0) {
            this.elementData = new Object[initialCapacity];
        } else if (initialCapacity == 0) {
            this.elementData = EMPTY_ELEMENTDATA;
        } else {
            throw new IllegalArgumentException("Illegal Capacity: "+
                                               initialCapacity);
        }
    }
    
    // 不指定大小的话默认给数组指定初始化大小为10
    public ArrayList() {
        this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA;
    }
    
    public boolean add(E e) {
        ensureCapacityInternal(size + 1);  // Increments modCount!!
        elementData[size++] = e;
        return true;
    }
    
    private void ensureCapacityInternal(int minCapacity) {
        if (elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA) {
            minCapacity = Math.max(DEFAULT_CAPACITY, minCapacity);
        }

        ensureExplicitCapacity(minCapacity);
    }
    
    private void ensureExplicitCapacity(int minCapacity) {
        modCount++;

        // overflow-conscious code
        if (minCapacity - elementData.length > 0)
            grow(minCapacity);
    }
    
    private void grow(int minCapacity) {
        // overflow-conscious code
        int oldCapacity = elementData.length;
        // 默认情况下扩充为原来的一半
        int newCapacity = oldCapacity + (oldCapacity >> 1);
        if (newCapacity - minCapacity < 0)
            newCapacity = minCapacity;
        if (newCapacity - MAX_ARRAY_SIZE > 0)
            newCapacity = hugeCapacity(minCapacity);
        // minCapacity is usually close to size, so this is a win:
        // 创建一个新数组并把原来数组里的内容拷贝到新数组中
        elementData = Arrays.copyOf(elementData, newCapacity);
    }
    
    public static <T> T[] copyOf(T[] original, int newLength) {
        return (T[]) copyOf(original, newLength, original.getClass());
    }
    
    public static <T,U> T[] copyOf(U[] original, int newLength, Class<? extends T[]> newType) {
        @SuppressWarnings("unchecked")
        T[] copy = ((Object)newType == (Object)Object[].class)
            ? (T[]) new Object[newLength]
            : (T[]) Array.newInstance(newType.getComponentType(), newLength);
        System.arraycopy(original, 0, copy, 0,
                         Math.min(original.length, newLength));
        return copy;
    }
    
    public E remove(int index) {
        if (index >= size)
            throw new IndexOutOfBoundsException(outOfBoundsMsg(index));

        modCount++;
        E oldValue = (E) elementData[index];

        int numMoved = size - index - 1;
        if (numMoved > 0)
            System.arraycopy(elementData, index+1, elementData, index,
                             numMoved);
        elementData[--size] = null; // clear to let GC do its work

        return oldValue;
    }   
    
    public int size() {
        return size;
    }
    
    // 通过 native 层去拷贝代码
    // src :原来的数组
    // srcPos:原来数组的开始位置
    // dest:新的数组
    // destPos:新数组的开始位置
    // length:拷贝多少个
    public static native void arraycopy(Object src,  int  srcPos,
                                        Object dest, int destPos,
                                        int length);

通过上面的代码来分析,ArrayList 其内部的实现方式其实就是数组,如果没指定数组的大小,那么在第一次添加数据的时候,数组的初始大小是 10 ,每次当不够用的时候默认会扩充原来数组的 1/2 ,每次扩充数组大小都会涉及到创建新数组和数据的拷贝复制。而数组的拷贝和逻动都是由我们的 native 层代码实现,接下来我们简单实现native层ArrayList逻辑。

实现 Native 层的 ArrayList

#include<malloc.h>
#include<memory.h>
#include <iostream>

using namespace std;

template<class E>
class ArrayList
{
public:
    //数组头指针
    E* elementData = NULL;
    //数组长度
    int index = 0;
    //数组容量大小
    int size = 0;

public:
    ArrayList();
    ArrayList(int size);
    ArrayList(const ArrayList& list);
    ~ArrayList();

public:
    bool add(E e);
    int len();
    int capacity();
    E get(int index);
    E remove(int index);
private:
    void ensureCapacityInternal(int minCapacity);
    void grow(int minCapacity);
};

template<class E>
ArrayList<E>::ArrayList()
{
    cout << "无参构造" << endl;
}

template<class E>
ArrayList<E>::ArrayList(int size)
{
    cout << "带参构造" << endl;
    if (size == 0) {
        return;
    }
    this->size = size;
    this->elementData = (E*)malloc(sizeof(E) * size);
}

template<class E>
ArrayList<E>::ArrayList(const ArrayList& list)
{
    cout << "拷贝构造" << endl;
    this->size = list.size;
    this->index = list.index;
    this->elementData = (E*)malloc(sizeof(E) * size);
    memcpy(this->elementData, list.elementData, sizeof(E) * size);
}

template<class E>
ArrayList<E>::~ArrayList()
{
    cout << "析构函数" << endl;
    if (this->elementData) {
        free(this->elementData);
        this->elementData = NULL;
    }
}

template<class E>
bool ArrayList<E>::add(E e)
{
    ensureCapacityInternal(index + 1);
    this->elementData[index++] = e;
    return true;
}

template<class E>
int ArrayList<E>::len()
{
    return this->index;
}

template<class E>
int ArrayList<E>::capacity()
{
    return this->size;
}

template<class E>
E ArrayList<E>::get(int index)
{
    return this->elementData[index];
}

template<class E>
E ArrayList<E>::remove(int index)
{
    E oldValue = this->elementData[index];
    int needMoved = this->index - index - 1;
    int i = 0;
    for (i; i < needMoved; i++)
    {
        this->elementData[index + i] = this->elementData[index + i + 1];
    }
    this->index -= 1;
    return oldValue;
}

template<class E>
void ArrayList<E>::ensureCapacityInternal(int minCapacity)
{
    if (this->elementData == NULL)
    {
        minCapacity = 10;
    }
    if (minCapacity - size > 0)
    {
        grow(minCapacity);
    }

}

template<class E>
void ArrayList<E>::grow(int minCapacity)
{
    int newCapacity = size + (size >> 1);
    if (newCapacity - minCapacity < 0)
    {
        newCapacity = minCapacity;
    }
    E* new_arr = (E*)malloc(sizeof(E) * newCapacity);

    if (this->elementData)
    {
        memcpy(new_arr, this->elementData, sizeof(E) * index);
        free(this->elementData);
    }

    this->elementData = new_arr;
    size = newCapacity;
}


int main() {
    //ArrayList<int> list = { 4 };
    //ArrayList<int> list(4);
    //list.add(1);
    //list.add(2);
    //list.add(3);
    //int i = 0;
    //for (i; i < list.index; i++)
    //{
    //  cout << "i:" << list.get(i) << endl;
    //}
    ArrayList<int>* list = new ArrayList<int>(5);
    list->add(1);
    list->add(2);
    list->add(3);

    cout << "remove 前 len:" << list->len() << " capacaity:" << list->capacity() << endl;
    int i = 0;
    for (i; i < list->index; i++)
    {
        cout << "i:" << list->get(i) << endl;
    }

    list->remove(1);
    cout << "remove 后 len:" << list->len() << " capacaity:" << list->capacity() << endl;

    i = 0;
    for (i; i < list->index; i++)
    {
        cout << "i:" << list->get(i) << endl;
    }
    getchar();
    return 0;
}

运行结果

带参构造
remove 前 len:3 capacaity:5
i:1
i:2
i:3
remove 后 len:2 capacaity:5
i:1
i:3
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,794评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,050评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,587评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,861评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,901评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,898评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,832评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,617评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,077评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,349评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,483评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,199评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,824评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,442评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,632评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,474评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,393评论 2 352

推荐阅读更多精彩内容