标签: c++
可能重复: Is there a difference in C++ between copy initialization and direct initialization? What's the difference between explicit and implicit assignment in C++
这很简单。有什么区别
std::string a("abc");
和
std::string a = "abc";