The GObject base class
GObject是一个fundamental classed instantiatable type,它的功能如下:
内存管理构建/销毁实例set/get属性方法信号
/*** GObjectClass:* g_type_class: the parent class* constructor: the constructor function is called by g_object…
一、什么是 LRU
LRU是 Least Recently Used 的缩写,即最近最少使用,是一种常用的页面置换算法,选择最近最久未使用的页面予以淘汰。
简单的说就是,对于一组数据,例如:int[] a {1,2,3,4,5,6},…