千家信息网

Android系统中轻量级指针是如何实现的

发表于:2025-01-19 作者:千家信息网编辑
千家信息网最后更新 2025年01月19日,这篇文章主要介绍"Android系统中轻量级指针是如何实现的",在日常操作中,相信很多人在Android系统中轻量级指针是如何实现的问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对
千家信息网最后更新 2025年01月19日Android系统中轻量级指针是如何实现的

这篇文章主要介绍"Android系统中轻量级指针是如何实现的",在日常操作中,相信很多人在Android系统中轻量级指针是如何实现的问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答"Android系统中轻量级指针是如何实现的"的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

智能指针来源

引发指针错误情况表现常常有如下几个表现情况:
1.申请了内存空间,但是忘记释放指针所指向的对象占用的内存空间。
2.使用了无效的指针。
因此在android的C++代码部分采用了智能指针的技术。智能指针通过一种能够自动危害对象引用计数的技术。来解决C++中指针存在的缺陷问题。
在android系统中提供了三种类型的C++智能指针,分别为:轻量级智能指针、强指针、弱指针。
下面主要通过进行分析轻量级指针的实现原理。

轻量级指针

轻量级指针就是通过利用简单的引用计数计数类维护对象的生命周期,如果一个类的对象支持使用轻量级指针,那么它就必须要从LightRefBase类进行继承,因为这个LightRefBase类提供了一个简单的引用计数器。

LightRefBase类定义

下面的源码主要依据android5.0的源码进行分析的。LightRefBase类的定义在android系统中的\frameworks\rs\cpp\util\RefBase.h 这个文件中。
LightRefBase类也是一个模板类。模板参数T表示对象的实际类型,它必须进行对LightRefBase这个类继承。

//模板类template class LightRefBase{public:    //公共的内联函数    inline LightRefBase() : mCount(0) { }    inline void incStrong(__attribute__((unused)) const void* id) const {        __sync_fetch_and_add(&mCount, 1);    }    inline void decStrong(__attribute__((unused)) const void* id) const {        if (__sync_fetch_and_sub(&mCount, 1) == 1) {            delete static_cast(this);        }    }    //! DEBUGGING ONLY: Get current strong ref count.    inline int32_t getStrongCount() const {        return mCount;    }    typedef LightRefBase basetype;protected:    //内联的虚构函数    inline ~LightRefBase() { }private:    friend class ReferenceMover;    inline static void moveReferences(void*, void const*, size_t,            const ReferenceConverterBase&) { }private:    mutable volatile int32_t mCount;};

上面LightRefBase类定义涉及到几个知识点:

  • 1、C++的三个访问权限类型:public、protected、private。

public:可以被任意实体访问。
protected:只允许子类及本类的成员函数访问。
private:只允许本类的成员函数访问。

  • 2、C++中的inline内联函数

在函数第一部分如果包含有inline关键字的函数,那么这个函数就表示为内联函数。内联函数主要为了解决一些频繁调用的小函数大量消耗栈空间(栈内存)的问题。
inline的使用是有所限制的,inline只适合涵数体内代码简单的涵数使用,不能包含复杂的结构控制语句例如while、switch,并且不能内联函数本身不能是直接递归函数(递归函数:自己内部还调用自己的函数)。

  • 3、C++中的friend友元函数

C++中的友元机制允许类的非公有成员被一个类或者函数访问,友元按类型分为三种:普通非类成员函数作为友元,类的成员函数作为友元,类作为友元。
友元函数是可以直接访问类的私有成员的非成员函数。它是定义在类外的普通函数,它不属于任何类,但需要在类的定义中加以声明,声明时只需在友元的名称前加上关键字friend。

  • 4、C++中的mutable关键字

mutable是为了突破const的限制而设置的。被mutable修饰的变量,将永远处于可变的状态,即使在一个const函数中。

  • 5、C++中的template类模板

一个类模板(也称为类属类或类生成类)同意用户为类定义一种模式。使得类中的某些数据成员、默写成员函数的參数、某些成员函数的返回值,能够取随意类型(包含系统提前定义的和用户自己定义的)。
类模板的应用场景:多个类有着共同操作,但是数据类型不同。

LightRefBase的实现类

轻量级LightRefBase类的实现类为wp类,它也是在\frameworks\rs\cpp\util\RefBase.h 这个文件中。wp也是一个模板类,模板参数T表示的是对象的实际类型,它必须继承LightRefBase类。由于wp类也是强指针的实现类,因此我们只需要分析下该wp类中关于轻量级指针类的实现部分就可以了。

//模板类template class wp{public:    typedef typename RefBase::weakref_type weakref_type;    //轻量级指针需要用到的构造函数    inline wp() : m_ptr(0) { }    wp(T* other);    wp(const wp& other);    wp(const sp& other);    template wp(U* other);    template wp(const sp& other);    template wp(const wp& other);    //轻量级指针需要用到的虚构函数    ~wp();    // Assignment    wp& operator = (T* other);    wp& operator = (const wp& other);    wp& operator = (const sp& other);    template wp& operator = (U* other);    template wp& operator = (const wp& other);    template wp& operator = (const sp& other);    void set_object_and_refs(T* other, weakref_type* refs);    // promotion to sp    sp promote() const;    // Reset    void clear();    // Accessors    inline  weakref_type* get_refs() const { return m_refs; }    inline  T* unsafe_get() const { return m_ptr; }    // Operators    COMPARE_WEAK(==)    COMPARE_WEAK(!=)    COMPARE_WEAK(>)    COMPARE_WEAK(<)    COMPARE_WEAK(<=)    COMPARE_WEAK(>=)    inline bool operator == (const wp& o) const {        return (m_ptr == o.m_ptr) && (m_refs == o.m_refs);    }    template    inline bool operator == (const wp& o) const {        return m_ptr == o.m_ptr;    }    inline bool operator > (const wp& o) const {        return (m_ptr == o.m_ptr) ? (m_refs > o.m_refs) : (m_ptr > o.m_ptr);    }    template    inline bool operator > (const wp& o) const {        return (m_ptr == o.m_ptr) ? (m_refs > o.m_refs) : (m_ptr > o.m_ptr);    }    inline bool operator < (const wp& o) const {        return (m_ptr == o.m_ptr) ? (m_refs < o.m_refs) : (m_ptr < o.m_ptr);    }    template    inline bool operator < (const wp& o) const {        return (m_ptr == o.m_ptr) ? (m_refs < o.m_refs) : (m_ptr < o.m_ptr);    }                         inline bool operator != (const wp& o) const { return m_refs != o.m_refs; }    template inline bool operator != (const wp& o) const { return !operator == (o); }                         inline bool operator <= (const wp& o) const { return !operator > (o); }    template inline bool operator <= (const wp& o) const { return !operator > (o); }                         inline bool operator >= (const wp& o) const { return !operator < (o); }    template inline bool operator >= (const wp& o) const { return !operator < (o); }private:    template friend class sp;    template friend class wp;    //轻量级指针会用到的变量m_ptr    T*              m_ptr;    weakref_type*   m_refs;};

到此,关于"Android系统中轻量级指针是如何实现的"的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注网站,小编会继续努力为大家带来更多实用的文章!

0