stl vector and c++: how to .resize without a default constructor?(stl 向量和 C++:如何在没有默认构造函数的情况下调整大小?)
问题描述
我如何告诉 STL,特别是向量中的 resize()
方法,用一个非默认的构造函数初始化对象,以及使用哪些参数?
How do I tell STL, specifically for the method resize()
in vector, to initialize objects with a constructor other than default, and with which parameters?
例如:
class something {
int a;
something (int value);
}
std::vector<something> many_things;
many_things.resize (20);
更一般地说,当 STL 需要创建对象并将参数传递给该构造函数时,我如何强制它使用我的构造函数?
More generally, how do I force STL to use my constructor when it needs to create objects, and pass parameters to that constructor?
就我而言,添加默认构造函数不是一种选择,我不希望使用指针数组来解决问题.
In my case adding a default constructor is not an option, and I'd prefer not to use an array of pointers to solve the problem.
推荐答案
使用 2 参数重载:many_things.resize(20, something(5));
这篇关于stl 向量和 C++:如何在没有默认构造函数的情况下调整大小?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:stl 向量和 C++:如何在没有默认构造函数的情况下调整大小?
基础教程推荐
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01