摘要: Vector底层实现 Vector底层实现 vector的三个私有成员 :_start 记录初始位置 , _finish 记录有效字符 , _endofstoage 记录容量大小 vector会存储的类型不同,所以要用模版来定类型 typedef T* iterator; iterator _start; iterato 阅读全文
posted @ 2022-09-01 18:49 lemon-Breeze 阅读(410) 评论(0) 推荐(1)