C++day7(auto关键字、lambda表达式、C++中的数据类型转换、C++标准模板库(STL)、list、文件操作)

一、Xmind整理:

关键词总结:

二、上课笔记整理:

1.auto关键字

#include <iostream>using namespace std;int fun(int a, int b, float *c, char d, double *e,int f)
{return 1+2;
}int main()
{//定义一个函数指针,指向fun函数int (*p)(int , int , float *, char , double *,int ) = fun;//用auto来完成auto ptr = fun;return 0;
}
#include <iostream>using namespace std;template <typename T>
void fun(T a)
{auto b = a;cout << "b的数据类型:" << typeid (b).name() << endl;
}int main()
{int a =10;fun(a);return 0;
}

 2.lambda表达式

#include <iostream>using namespace std;int main()
{int a = 100;double b = 13.45;char c = 'x';cout << "main-&a:" << &a << "  a = " << a << endl;//    auto fun = [a,b,c]()mutable{
//    auto fun = [=]()mutable{auto fun = [&a,&b](){cout << "lambda--&a " << &a << " a = " << a << endl;a = 200;cout << "lambda--&a " << &a << " a = " << a << endl;};fun();cout << "main-&a:" << &a << "  a = " << a << endl;return 0;
}
#include <iostream>using namespace std;int main()
{int a = 100;double b = 13.45;char c = 'x';cout << "main-&a:" << &a << "  a = " << a << endl;
//    auto fun = [a,b,c]()mutable{
//    auto fun = [=]()mutable{auto fun = [&a,&b](string name = "hello world")->string{cout << "lambda--&a " << &a << " a = " << a << endl;a = 200;cout << "lambda--&a " << &a << " a = " << a << endl;return name;};cout << fun("hello kitty") << endl;cout << "main-&a:" << &a << "  a = " << a << endl;return 0;
}

 3.隐式类型转换(自动类型转换)

int num_int = 10;
double num_double = num_int;  // 隐式将int转换为double

4.显示类型转换(强制类型转换)

①静态转换

double num_double = 3.14;
int num_int = static_cast<int>(num_double);  // 显式将double转换为int

②动态转换

class Base {virtual void foo() {}
};
class Derived : public Base {};Base* base_ptr = new Derived;
Derived* derived_ptr = dynamic_cast<Derived*>(base_ptr);  // 显式将基类指针转换为派生类指针

③常量转换

const int a =10; //
int *p;
p = &a; // 合不合法?   no
const int num_const = 5;
int* num_ptr = const_cast<int*>(&num_const);  // 去除const限定符

④重新解释转换

int num = 42;
float* float_ptr = reinterpret_cast<float*>(&num);  // 重新解释转换

5.C风格类型转换

①c样式转换

int num_int = 10;
double num_double = (double)num_int;  // C样式强制类型转换

②函数样式转换(函数式转换)

int num_int = 10;
double num_double = double(num_int);  // C++函数样式类型转换

6.vector的构造函数

#include <iostream>
#include <vector>using namespace std;//算法
void printVector(vector<int> &v)
{vector<int>::iterator iter; //定义了这样容器类型的迭代器for(iter = v.begin(); iter != v.end(); iter++){cout << *iter << " ";}cout << endl;
}int main()
{//容器vector<int> v; //无参构造函数v.push_back(10); //尾插v.push_back(20);v.push_back(30);v.push_back(40);//算法printVector(v);vector<int> v2(v.begin(),v.end());printVector(v2);vector<int> v3(6,100);printVector(v3);vector<int> v4 = v3;printVector(v4);vector<int> v5(v2);printVector(v5);return 0;
}

7.vector的容量大小

#include <iostream>
#include <vector>using namespace std;//算法
void printVector(vector<int> &v)
{vector<int>::iterator iter; //定义了这样容器类型的迭代器for(iter = v.begin(); iter != v.end(); iter++){cout << *iter << " ";}cout << endl;
}int main()
{//容器vector<int> v; //无参构造函数v.push_back(10); //尾插v.push_back(20);v.push_back(30);v.push_back(40);//算法printVector(v);vector<int> v2(v.begin(),v.end());printVector(v2);vector<int> v3(6,100);printVector(v3);vector<int> v4 = v3;printVector(v4);vector<int> v5(v2);printVector(v5);vector<int> v6;v6 = v5;printVector(v6);v6.assign(v5.begin(),v5.end());printVector(v6);v6.assign(8,99);printVector(v6);if(v6.empty()){cout << "容器为空" << endl;}else{cout << "容器的容量大小:" << v6.capacity() << endl;cout << "容器的大小:" << v6.size() << endl;v6.resize(15);printVector(v6);}return 0;
}

8.vector的元素提取

#include <iostream>
#include <vector>using namespace std;//算法
void printVector(vector<int> &v)
{vector<int>::iterator iter; //定义了这样容器类型的迭代器for(iter = v.begin(); iter != v.end(); iter++){cout << *iter << " ";}cout << endl;
}int main()
{//容器vector<int> v; //无参构造函数v.push_back(10); //尾插v.push_back(20);v.push_back(30);v.push_back(40);//算法printVector(v);//    v.pop_back();//尾删
//    printVector(v);//    v.insert(v.begin()+1,99);
//    printVector(v);//    v.insert(v.begin(),4,77);
//    printVector(v);//    v.erase(v.begin());
//    printVector(v);//    v.erase(v.begin(),v.end());
//    printVector(v);v.clear();printVector(v);cout << "------------------" <<endl;vector<int> vv;for(int i=0;i<5;i++){vv.push_back(i);}cout << vv.at(3) << endl;cout << vv[3] << endl;cout << vv.front() << endl;cout << vv.back() << endl;return 0;
}

9.文件操作

#include <iostream>
#include <fstream>using namespace std;int main()
{//1包含头文件  //2创建流对象ofstream ofs;//3打开文件ofs.open("E:/ready_class/stu.txt",ios::out);//4写入数据ofs << "姓名:张三" << endl;ofs << "年龄:34"  << endl;//5关闭文件ofs.close();//1包含头文件//2创建流对象ifstream ifs;//3打开文件ifs.open("E:/ready_class/stu.txt",ios::in);//4读取数据char buff[1024];while(ifs>>buff){cout << buff << endl;}//5.关闭文件ifs.close();return 0;
}

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

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

相关文章

HarmonyOS开发:探索动态共享包的依赖与使用

前言 所谓共享包&#xff0c;和Android中的Library本质是一样的&#xff0c;目的是为了实现代码和资源的共享&#xff0c;在HarmonyOS中&#xff0c;给开发者提供了两种共享包&#xff0c;HAR&#xff08;Harmony Archive&#xff09;静态共享包&#xff0c;和HSP&#xff08;H…

科研无人机平台P600进阶版,突破科研难题!

随着无人机技术日益成熟&#xff0c;无人机的应用领域不断扩大&#xff0c;对无人机研发的需求也在不断增加。然而&#xff0c;许多开发人员面临着无法从零开始构建无人机的时间和精力压力&#xff0c;同时也缺乏适合的软件平台来支持他们的开发工作。为了解决这个问题&#xf…

K 次取反后最大化的数组和【贪心算法】

1005 . K 次取反后最大化的数组和 给你一个整数数组 nums 和一个整数 k &#xff0c;按以下方法修改该数组&#xff1a; 选择某个下标 i 并将 nums[i] 替换为 -nums[i] 。 重复这个过程恰好 k 次。可以多次选择同一个下标 i 。 以这种方式修改数组后&#xff0c;返回数组 可能…

Android studio实现圆形进度条

参考博客 效果图 MainActivity import androidx.appcompat.app.AppCompatActivity; import android.graphics.Color; import android.os.Bundle; import android.widget.TextView;import java.util.Timer; import java.util.TimerTask;public class MainActivity extends App…

AIGC:初学者使用“C知道”实现AI人脸识别

文章目录 前言人脸识别介绍准备工作创作过程生成人脸识别代码下载分类文件安装 OpenCV生成人脸识别代码&#xff08;图片&#xff09; 创作成果总结 前言 从前&#xff0c;我们依靠各种搜索引擎来获取内容&#xff0c;但随着各类数据在互联网世界的爆炸式增长&#xff0c;加上…

文献阅读:Deep Learning Enabled Semantic Communication Systems

目录 论文简介关于文章内容的总结引申出不理解的问题 论文简介 作者 Huiqiang Xie Zhijin Qin Geoffrey Ye Li Biing-Hwang Juang 发表期刊or会议 《IEEE TRANSACTIONS ON SIGNAL PROCESSING》 发表时间 2021.4 这篇论文由《Deep Learning based Semantic Communications: A…

ZooKeeper数据模型/znode节点深入

1、Znode的数据模型 1.1 Znode是什么&#xff1f; Znode维护了一个stat结构&#xff0c;这个stat包含数据变化的版本号、访问控制列表变化、还有时间戳。版本号和时间戳一起&#xff0c;可让Zookeeper验证缓存和协调更新。每次znode的数据发生了变化&#xff0c;版本号就增加。…

Ansible学习笔记9

yum_repository模块&#xff1a; yum_repository模块用于配置yum仓库的。 测试下&#xff1a; [rootlocalhost ~]# ansible group1 -m yum_repository -a "namelocal descriptionlocalyum baseurlfile:///mnt/ enabledyes gpgcheckno" 192.168.17.106 | CHANGED &g…

Unity ShaderGraph教程——基础shader

1.基本贴图shader&#xff1a; 基础贴图实现&#xff1a;主贴图、自发光贴图、光滑度贴图、自发光贴图&#xff08;自发光还加入了颜色影响和按 钮开关&#xff09;. 步骤&#xff1a;最左侧操作组——新建texture2D——新建sample texture 2D承…

pdfh5在线预览pdf文件

前言 pc浏览器和ios的浏览器都可以直接在线显示pdf文件&#xff0c;但是android浏览器不能在线预览pdf文件&#xff0c;如何预览pdf文件&#xff1f; Github: https://github.com/gjTool/pdfh5 Gitee: https://gitee.com/gjTool/pdfh5 使用pdfh5预览pdf 编写预览页面 <…

docker network

docker network create <network>docker network connect <network> <container>docker network inspect <network>使用这个地址作为host即可 TODO&#xff1a;添加docker-compose

2023年全国职业院校技能大赛信息安全管理与评估网络安全渗透任务书

全国职业院校技能大赛 高等职业教育组 信息安全管理与评估 任务书 模块三 网络安全渗透、理论技能与职业素养 比赛时间及注意事项 本阶段比赛时长为180分钟&#xff0c;时间为9:00-12:00。 【注意事项】 &#xff08;1&#xff09;通过找到正确的flag值来获取得分&#xff0c;f…