摘要:
首先先来一段代码,说明我的自主删除器: template <typename T> class FFmpegDeleteer { public: void operator()(T* ptr) const { if (ptr) { delete ptr; } } }; template<> clas 阅读全文
posted @ 2024-09-04 23:35
halolll
阅读(25)
评论(1)
推荐(0)