c++ map没有赋值数据=0

#include "pch.h"
#include 
using namespace std;
#include
int main()
{
	map<int, int> f;
	f[0] = 1;
    cout << f[0]<<endl;
	cout << f[1];
}

在这里f[1]没有赋值,得到结果f[1]=0
在这里插入图片描述

你可能感兴趣的:(C++学习)