Vector vs string

前端 未结 7 683
挽巷
挽巷 2020-12-06 09:46

What is the fundamental difference, if any, between a C++ std::vector and std::basic_string?

7条回答
  •  醉酒成梦
    2020-12-06 10:20

    The basic_string provides many string-specific comparison options. You are right in that the underlying memory management interface is very similar, but string contains many additional members, like c_str(), that would make no sense for a vector.

提交回复
热议问题