请问如何调用 section 的成员

如图,想调用 section 中的成员 name,但是会报错,请问该如何调用 section 中的成员
图片

se 的类型是 pair<string, Section>,要获取 Section 字段,需要引用 se.second。此外,sections 是一个无序映射,对给定键,值的类型是 Section。例如 sections[“foo”] 是一个 Section 类型。

1 Like