标签: c++ c++11 initializer-list
我很惊讶以下代码编译甚至产生了正确的结果。 问题是为什么C ++ 11允许在初始化列表中悬挂逗号?
auto l = {1,3,}; std::vector<int> v{ {1,3,}, };
live example