本文主要是介绍【C++新特性尝鲜之】unordered_map bitset 特殊for循环,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#include<iostream>
#include<cstdio>
#include<unordered_map>
#include<bitset>
using namespace std;int main(){//测试unordered_map(哈希表)unordered_map<char,bool> maps;string S="ABCDEFHIJKL";//测试特别好用的for循环for(char& e:S){maps[e]=false;}maps['G']=true;S="ABCDEFGHIJKL";cout<<(maps['A']==true)<<endl;//测试bitsetbitset<8> a;a=63;cout<<a<<endl;return 0;
}
这篇关于【C++新特性尝鲜之】unordered_map bitset 特殊for循环的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!