__STL_VOLATILE

 _Obj* __STL_VOLATILE* __my_free_list
          = _S_free_list + _S_freelist_index(__n);
 _Obj* * __my_free_list
          = _S_free_list + _S_freelist_index(__n);

这个就是指针的指针;用volatile修饰一下二级指针(名字个人取的,理解就好)

原文地址:https://www.cnblogs.com/infoo/p/8708051.html