【c++】跟webrtc学引用计数

rtc::RefCountInterface 接口类

  • G:\CDN\rtcCli\m98\src\rtc_base\ref_count.h

引用计数想形成一种树状结构

  • // Interfaces where refcounting is part of the public api should
    // inherit this abstract interface. The implementation of these
    // methods is usually provided by the RefCountedObject template class,
    // applied as a leaf in the inheritance tree.

  • // 引用计数是公共 api 一部分的接口应该
    //继承这个抽象接口。这些措施的实施
    // 方法通常由 RefCountedObject 模板类提供,
    // 作为继承树中的叶子应用。

引用计数的释放状态

enum class RefCountReleaseStatus {
    kDroppedLastRef, kOtherRefsRemained }

你可能感兴趣的:(c/c++笔面应用实战,c++,webrtc,java)