Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
*s.begin()
vector
front
back
在这里,我说的是设计原因,为什么front/back会是糟糕的设计,所以请跳过明显的原因,比如委员会忘记了它......
我想“前”和“后”这两个词是为序列容器保留的(即元素的顺序由插入顺序决定的容器),这些词是为了暗示该序列中的物理位置。
由于set不是序列容器(而是关联容器),因此这是不合适的。特别要注意的是,“front”的含义可能会因以后插入不相关的元素而改变。
set