_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修饰一下二级指针(名字个人取的,理解就好)
2023-10-22 15:35:16
_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修饰一下二级指针(名字个人取的,理解就好)