What is the default constructor for C++ pointer?(C++ 指针的默认构造函数是什么?)
问题描述
我有这样的代码:
class MapIndex
{
private:
typedef std::map<std::string, MapIndex*> Container;
Container mapM;
public:
void add(std::list<std::string>& values)
{
if (values.empty()) // sanity check
return;
std::string s(*(values.begin()));
values.erase(values.begin());
if (values.empty())
return;
MapIndex *&mi = mapM[s]; // <- question about this line
if (!mi)
mi = new MapIndex();
mi->add(values);
}
}
我主要关心的是,如果将新项目添加到地图中,mapM[s] 表达式是否会返回对 NULL 指针的引用?
The main concern I have is whether the mapM[s] expression would return reference to NULL pointer if new item is added to the map?
SGI 文档是这样说的:data_type&运算符[](const key_type& k)返回对与特定键关联的对象的引用.如果地图还没有包含这样的对象,operator[] 插入默认对象 data_type().
所以,我的问题是插入默认对象 data_type() 是否会创建一个 NULL 指针,或者它会创建一个指向内存中某处的无效指针?
So, my question is whether the insertion of default object data_type() will create a NULL pointer, or it could create an invalid pointer pointing somewhere in the memory?
推荐答案
它会创建一个 NULL
(0) 指针,无论如何它都是一个无效指针 :)
It'll create a NULL
(0) pointer, which is an invalid pointer anyway :)
这篇关于C++ 指针的默认构造函数是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++ 指针的默认构造函数是什么?
基础教程推荐
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 设计字符串本地化的最佳方法 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01