C4503 warnings? How do i solve/get rid of them?
问题 It's my first time trying out C++ STL. I'm trying to build a multidimensional associative array using map. For example: typedef struct DA { string read_mode; string data_type; void *pValue; void *pVarMemLoc; }DA; int main() { map<string, map<string, map<string, map<string, map<string, DA*>>>>> DATA; DATA["lvl1"]["stg1"]["flr1"]["dep1"]["rom1"] = new DA; DATA["lvl1"]["stg1"]["flr1"]["dep1"]["rom2"] = new DA; DATA["lvl1"]["stg1"]["flr1"]["dep1"]["rom3"] = new DA; IEC["lvl1"]["stg1"]["flr1"][