1 Matching Annotations
  1. Sep 2015
    1. Associative Elements in associative containers are referenced by their key and not by their absolute position in the container.

      set可以通过key访问,不支持[] 下标访问。 而且set的值不能更改,只能插入和删除。set保存的是非重复的排序的元素。