本文介绍了Qt - 如何使用qFill填充QMap的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好。我们如何使用qFill()填充QMap?我们应该如何提供要填充的值?
Hi. How can we fill a QMap using qFill()? How should we supply the values to be filled?
推荐答案
QMap<int, int> _map;
_map.insert(0, 10);
_map.insert(1, 11);
_map.insert(2, 12);
_map.insert(3, 13);
_map.insert(4, 14);
_map.insert(5, 15);
qFill(_map.begin(), _map.end(), 10);
问候,
Saurabh
Regards,
Saurabh
这篇关于Qt - 如何使用qFill填充QMap的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!