一点关于map的记录

#include <bits/stdc++.h>

using namespace std;

int main() {
    map<char,int> mp;
    mp['a']++;
    if (mp['b'] == 0) printf("OK");
    printf("%d\n",(int)mp.size());
    return 0;
}

该程序输出结果为

OK2

以前都没有注意过

posted @ 2021-07-08 00:06  kjd123456  阅读(21)  评论(0编辑  收藏  举报