หากมีอยู่std::map
รายการเริ่มต้นเพิ่มเติมจะมีลักษณะอย่างไร
ฉันได้ลองใช้ชุดค่าผสมของ ... ทุกอย่างที่ฉันคิดได้ด้วย GCC 4.4 แต่ไม่พบสิ่งใดที่รวบรวมได้
หากมีอยู่std::map
รายการเริ่มต้นเพิ่มเติมจะมีลักษณะอย่างไร
ฉันได้ลองใช้ชุดค่าผสมของ ... ทุกอย่างที่ฉันคิดได้ด้วย GCC 4.4 แต่ไม่พบสิ่งใดที่รวบรวมได้
คำตอบ:
มีอยู่และทำงานได้ดี:
std::map <int, std::string> x
{
std::make_pair (42, "foo"),
std::make_pair (3, "bar")
};
โปรดจำไว้ว่าประเภทค่าของแผนที่คือpair <const key_type, mapped_type>
ดังนั้นโดยพื้นฐานแล้วคุณต้องมีรายการคู่ที่มีประเภทเดียวกันหรือประเภทที่เปลี่ยนแปลงได้
ด้วยการเริ่มต้นแบบรวมกับคู่ std :: โค้ดจะง่ายขึ้น
std::map <int, std::string> x {
{ 42, "foo" },
{ 3, "bar" }
};
map( std::initializer_list<value_type> init, const Compare& comp = Compare(), const Allocator& alloc = Allocator() );
พร้อมใช้งานตั้งแต่C ++ 11และmap( std::initializer_list<value_type> init, const Allocator& );
พร้อมใช้งานตั้งแต่C ++ 14เท่านั้น อ้างอิง: std :: map
ฉันต้องการเพิ่มคำตอบของ doublepว่าการเริ่มต้นรายการยังใช้ได้กับแผนที่ที่ซ้อนกัน ตัวอย่างเช่นหากคุณมีค่าstd::map
ด้วยstd::map
คุณสามารถเริ่มต้นได้ด้วยวิธีต่อไปนี้ (ตรวจสอบให้แน่ใจว่าคุณไม่จมอยู่ในวงเล็บปีกกา):
int main() {
std::map<int, std::map<std::string, double>> myMap{
{1, {{"a", 1.0}, {"b", 2.0}}}, {3, {{"c", 3.0}, {"d", 4.0}, {"e", 5.0}}}
};
// C++17: Range-based for loops with structured binding.
for (auto const &[k1, v1] : myMap) {
std::cout << k1 << " =>";
for (auto const &[k2, v2] : v1)
std::cout << " " << k2 << "->" << v2;
std::cout << std::endl;
}
return 0;
}
เอาท์พุต:
1 => a-> 1 b-> 2
3 => c-> 3 d-> 4 e-> 5