【C++ 测试】

C++ 测试

  • 一、二维数组
  • 二、私有成员
  • 三、function用法
  • 四、类里面创建另一个类
  • 五、lambda
  • 六、Map动态申请

一、二维数组

#include <iostream>
#include<windows.h>
#include <map>
//	SetConsoleOutputCP ( CP_UTF8 ) ; 
using namespace std;void test1()
{map<int, map<string,float>> m;m[0]["sch"] = 1.1;m[1]["hsd"] = 2.2;for (map<int, map<string,float>>::iterator it = m.begin(); it != m.end();it++){for ( map<string, float>::iterator it2= it->second.begin(); it2 != it->second.end();it2++){cout << it2->first<<" : "<<it2->second<<" ";}cout << endl;}
}void test2()
{map<int, string> m;m[0]= "sch";m[1]= "hsd";for (map<int, string>::iterator it = m.begin(); it != m.end();it++){cout << it->first <<"  "<<it->second<< endl;}
}void test3()
{array<int ,6> a={1,2,3,4,5,6};cout<< a.size()<< endl;for(unsigned int i(0);i < a.size(); i++){cout<< a[i]<< endl;}
}int main() {SetConsoleOutputCP ( CP_UTF8 );test1();system("pause");return 0;
}

二、私有成员

#include <iostream>
#include<windows.h>
#include <map>
//	SetConsoleOutputCP ( CP_UTF8 ) ; 
using namespace std;class myclass{
public:struct Store{int id;int value;bool status;};void test6(int number);private:Store a;
};void my_print(const myclass::Store &store){cout<<"store.id == "<<store.id<<endl;cout<<"store.status == "<<store.status<<endl;cout<<"store.value == "<<store.value<<endl;cout<<"-------------------------------------------"<<endl;
}void myclass::test6(int number){if(number==0){a.id=0;a.value=0;a.status=false;}else{a.id =1;	a.status=true;a.value =number;}myclass::Store & s= a;cout<< "a的地址== "<<&a<<endl;my_print(s);
}int main() {SetConsoleOutputCP ( CP_UTF8 );myclass c;c.test6(0);c.test6(1);c.test6(0);system("pause");return 0;
}

三、function用法

#include <iostream>
#include<windows.h>
#include <functional>
//	SetConsoleOutputCP ( CP_UTF8 ) ; 
using namespace std;
class A
{std::function<void(void)> callback_;
public:A(const std::function<void(void)>& f):callback_(f){}void notify(){callback_();}
};class Foo
{
public:void operator()(void){std::cout << __FUNCTION__ << std::endl;}
};void call_when_even(int x, const std::function<void(int)>& f)
{if (x % 2 == 0) {f(x);}else {f(0);}
}void output(int x)
{std::cout<< x << ""<<endl;
}int main() {SetConsoleOutputCP ( CP_UTF8 );Foo foo;A aa(foo);aa.notify();    call_when_even(1,output);system("pause");return 0;
}

四、类里面创建另一个类

#include <iostream>
#include<windows.h>
#include <map>
#include <functional>
//	SetConsoleOutputCP ( CP_UTF8 ) ; 
using namespace std;class A
{public: A(){cout<<"A 构造"<<endl;}A(int a,int b){cout<<a<<endl;cout<<b<<endl;}int a;~A(){cout<<"A 析构"<<endl;}
};class C
{public: C(){cout<<"C 构造"<<endl;}C(int a,int b){cout<<a<<endl;cout<<b<<endl;}int a;~C(){cout<<"C 析构"<<endl;}
};class B{
public:B(){cout<<"B 构造"<<endl;}~B(){cout<<"B 析构 "<<endl;}private:A a;
public:C c;
};void test()
{B b;
}int main() {SetConsoleOutputCP ( CP_UTF8 );if(-1)test();system("pause");return 0;
}

五、lambda

#include <iostream>
#include<windows.h>
#include <map>
#include <functional>
//	SetConsoleOutputCP ( CP_UTF8 ) ; 
using namespace std;using fun_name=std::function<void(int b,int c)>;
void fun(int a, std::function<void(int b,int c)> f)
{cout <<__FUNCTION__ <<  ":   "<< a <<endl;fun_name d=f;cout <<__FUNCTION__ <<  " 内的 f 函数"<<endl;f(4,6);cout <<__FUNCTION__ <<  " 内的 d 函数"<<endl;d(90,9);
}void fun2(int b, int c)
{cout <<__FUNCTION__<<  ":   "<<"b+c = "<<b+c <<endl;
}void test()
{int g =100;fun( 1,[&](int d, int e){g++; fun2(d,e);cout <<__FUNCTION__<<  ":   "<<"g = "<<g <<endl;});
}int main() {SetConsoleOutputCP ( CP_UTF8 );test();system("pause");return 0;
}结果打印:fun:   1fun 内的 f 函数fun2:   b+c = 10operator():   g = 101fun 内的 d 函数fun2:   b+c = 99operator():   g = 102

六、Map动态申请

#include <iostream>
#include<windows.h>
#include <map>
#include <functional>
//	SetConsoleOutputCP ( CP_UTF8 ) ; 
using namespace std;enum mGroup{GROUP_1=0,GROUP_2=1,GROUP_3=2,GROUP_4=3,GROUP_5=4,GROUP_6=5,
};class A{
public:struct Store{int id;array<int,8>data;bool status;};A(){cout <<"A 构造"<<endl;}~A(){cout <<"A 析构"<<endl;}void initStore();private:map<mGroup,map<int, Store>> m_map;
};void A::initStore(){m_map[GROUP_1][0].id = 1;m_map[GROUP_1][1].data.fill(0x02);for(int i=0; i<5; i++){cout << m_map[GROUP_1].size() << "   ID ="<<m_map[GROUP_1][i].id <<"  :" ;for (int j = 0; j < 8  ; j++){	cout<<m_map[GROUP_1][i].data[j]<<"  ";}cout<<endl;}
}int main() {SetConsoleOutputCP ( CP_UTF8 );A a;a.initStore();system("pause");return 0;
}
运行结果:A 构造2   ID =1  :0  0  0  0  0  0  0  02   ID =0  :2  2  2  2  2  2  2  22   ID =0  :0  0  0  0  0  0  0  03   ID =0  :0  0  0  0  0  0  0  04   ID =0  :0  0  0  0  0  0  0  0

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/711814.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

求最短路径之迪杰斯特拉算法

对fill用法的介绍 1.用邻接矩阵实现 const int maxn100; const int INF100000000;//无穷大&#xff0c;用来初始化边 int G[maxn][maxn];//用邻接矩阵存储图的信息 int isin[maxn]{false};//记录是否已被访问 int minDis[maxn];//记录到顶点的最小距离void Dijkstra(int s,in…

网格图的搜索

来自灵神网格图题单。 1. 网格图 1.1. LC 200 岛屿数量 这题我一开始想繁了&#xff0c;想维护并查集&#xff0c;然后看等价类个数。其实完全没有必要。因为连通分量深搜到头就可以直接给答案计数1。利用vis数组维护访问过的点&#xff0c;然后碰到新连通分量重新深搜即可。…

Pinia使用

官方地址&#xff1a;Pinia | The intuitive store for Vue.js (vuejs.org)https://pinia.vuejs.org/ 1.安装 npm install pinia npm install pinia-plugin-persistedstate Pinia是一个基于Vue 3的状态管理库&#xff0c;它使得管理Vue的全局状态变得更加容易和直观。 而…

自定义el-dialog的样式

实现效果&#xff1a; 样式代码如下&#xff1a;&#xff08;可以写在common.scss文件夹中&#xff09; .el-dialog__header {padding: 16px 20px;border-bottom: 1px solid #DCDFE6;display: flex;align-items: center;.el-dialog__title {font-size: 16px;position: relativ…

utniy urp shinyssrr插件使用

文章目录 前言步骤1首先在URP的配置文件里添加SSR后处理2 修改RenderingPath为延迟渲染3 启用深度纹理4 为物体添加脚本 插件下载 前言 用来实现屏幕空间反射效果 unity 版本为2021.3.8LTS&#xff0c;低版本的untiy URP的参数设置位置z可能会不同 步骤 1首先在URP的配置文件…

记录阿里云换源失败的惨痛教训

声明 首先我不是一个云服务器小白&#xff0c;但是之前一直在使用腾讯云和火山引擎的云服务器。从未见过阿里云这样如此**的运营商。 问题 服务器到手&#xff0c;第一步在我进行sudo apt update的时候&#xff0c;也就是更新软件包的时候&#xff0c;我发现&#xff0c;一直…

1028. 从先序遍历还原二叉树(三种方法:栈+递归+集合)

文章目录 1028. 从先序遍历还原二叉树&#xff08;三种方法&#xff1a;栈递归集合&#xff09;一、栈 while迭代1.思路2.代码 二、递归法1.思路2.代码 三、集合存储1.思路2.代码 1028. 从先序遍历还原二叉树&#xff08;三种方法&#xff1a;栈递归集合&#xff09; 一、栈 wh…

hive报错:FAILED: NullPointerException null

发现问题 起因是我虚拟机的hive不管执行什么命令都报空指针异常的错误 我也在网上找了很多相关问题的资料&#xff0c;发现都不是我这个问题的解决方法&#xff0c;后来在hive官网上与hive 3.1.3版本相匹配的hadoop版本是3.x的版本&#xff0c;而我的hadoop版本还是2.7.2的版本…

HTTPS的加密过程

文章目录 前言一、为什么需要加密&#xff1f;二、只用对称加密可以吗&#xff1f;三、只使用非对称加密四、双方都使用非对称加密五、使用非对称加密对称加密六、引入证书1.如何放防止数字证书被篡改&#xff1f;2.中间人有可能篡改该证书吗&#xff1f;3.中间人有可能掉包该证…

开窗函数rank() over,dense_rank() over,row_number() over的区别

1.rank() over 查询出指定的条件进行排名&#xff0c;条件相同排名相同的话&#xff0c;排名之间是不连续的 例如排名如 1 2 3 3 5 6 7 等&#xff0c;相同的排名会自动跳过 2.dense_rank() over 查询出指定的条件后进行排名&#xff0c;条件相同&#xff0c;排名相同的话&…

【YOLO系列】YOLOv9论文超详细解读(翻译 +学习笔记)

前言 时隔一年&#xff0c;YOLOv8还没捂热&#xff0c;YOLO系列最新版本——YOLOv9 终于闪亮登场&#xff01; YOLOv9的一作和v7一样。v4也有他。 他于2017年获得台湾省National Central University计算机科学与信息工程博士学位&#xff0c;现在就职于该省Academia Sinica的…

【大数据】Flink SQL 语法篇(六):Temporal Join

《Flink SQL 语法篇》系列&#xff0c;共包含以下 10 篇文章&#xff1a; Flink SQL 语法篇&#xff08;一&#xff09;&#xff1a;CREATEFlink SQL 语法篇&#xff08;二&#xff09;&#xff1a;WITH、SELECT & WHERE、SELECT DISTINCTFlink SQL 语法篇&#xff08;三&…

机器视觉——硬件选型

1、相机选型 在选择机器视觉相机时&#xff0c;通常需要考虑以下几个方面&#xff1a; 1、分辨率&#xff1a;相机的分辨率决定了其拍摄图像的清晰度和细节程度。根据具体的应用需求&#xff0c;可以选择适当的分辨率范围。 2、帧率&#xff1a;帧率表示相机每秒钟能够拍摄的…

2023年营养保健品线上电商市场行业分析(2024年营养保健行业未来趋势分析)

近年来&#xff0c;受人口老龄化、养生年轻化等因素驱动&#xff0c;保健品行业增长强劲&#xff0c;加之越来越多的年轻人也加入养生大军&#xff0c;成为保健品市场上的一股新力量&#xff0c;进一步带动市场扩容。 鲸参谋数据显示&#xff0c;2023年度&#xff0c;京东平台…

[pdf]《软件方法》2024版部分公开-共196页

DDD领域驱动设计批评文集 做强化自测题获得“软件方法建模师”称号 《软件方法》各章合集 潘加宇《软件方法》2024版部分公开pdf文件&#xff0c;共196页&#xff0c;已上传CSDN资源。 也可到以下地址下载&#xff1a; http://www.umlchina.com/url/softmeth2024.html 如果…

Ubuntu20.04 ssh终端登录后未自动执行.bashrc

sudo vim ~/.profile输入以下内容 if [ -n "$BASH_VERSION" ]; then if [ -f "$HOME/.bashrc" ]; then . "$HOME/.bashrc" fi fi 执行 source ~/.profile重新测试 其他答案 如果你的~/.bashrc文件在Ubuntu中没有自动生效&#xff0c;…

3. 文档概述(Documentation Overview)

3. 文档概述&#xff08;Documentation Overview&#xff09; 本章节简要介绍一下Spring Boot参考文档。它包含本文档其它部分的链接。 本文档的最新版本可在 docs.spring.io/spring-boot/docs/current/reference/ 上获取。 3.1 第一步&#xff08;First Steps&#xff09; …

解析电源模块测试条件与测试步骤 快速完成测试

高温高湿储存测试是电源模块环境适应性测试内容之一&#xff0c;在实际使用过程中由于应用场景不同电源所处的环境也是多样的&#xff0c;因此需要测试电源对各种环境的适应能力&#xff0c;提高电源的性能和可靠性。 电源高温高湿存储测试的目的是为了测量环境对电源结构、元件…

C语言第三十三弹---动态内存管理(上)

✨个人主页&#xff1a; 熬夜学编程的小林 &#x1f497;系列专栏&#xff1a; 【C语言详解】 【数据结构详解】 动态内存管理 1、为什么要有动态内存分配 2、malloc和free 2.1、malloc 2.2、free 3、calloc和realloc 3.1、calloc 3.2、realloc 4、常见的动态内存的错…

气象数据收集

1、国家气象科学数据中心 预报数据:需要定制,收费10万+ 观测数据:国家气象信息中心-中国气象数据网 (cma.cn)https://data.cma.cn/data/cdcdetail/dataCode/A.0012.0001.html 地面基本气象观测数据 滞后2天 滞后一天 路面数据同化系统,实时 国家气象信息中心-中国气象数…