文章分类 -  C++

摘要:title: C++运算符重载模仿管道操作 date: 2022-11-27T15:24:59Z lastmod: 2022-11-27T15:26:13Z 重载 + 运算 实现+运算重载 通过类内部实现成员函数operator+​以重载成员运算符+​,并接受一个右操作数为int​类型。返回自己的引 阅读全文
posted @ 2023-10-03 19:32 天空之城00 阅读(93) 评论(0) 推荐(0)
摘要:title: std::source_location date: 2022-11-27T15:17:30Z lastmod: 2022-11-27T15:18:24Z std::source_location 简介 ​source_location​​ 类表示关于源码的具体信息,例如文件名、行号以 阅读全文
posted @ 2023-10-03 19:32 天空之城00 阅读(181) 评论(0) 推荐(0)
摘要:title: C++中switch...case绕过变量初始化 date: 2022-11-27T15:42:36Z lastmod: 2022-11-27T15:43:20Z C++中switch...case绕过变量初始化 之前和同事遇到一个编译错误,顺便了解了一下标签下变量的作用域与绕过初始化 阅读全文
posted @ 2023-10-03 19:32 天空之城00 阅读(98) 评论(0) 推荐(0)
摘要:title: Lambda表达式 date: 2022-11-27T16:25:19Z lastmod: 2022-11-27T17:31:48Z Lambda表达式 Lambda表达式与仿函数 Lambda表达式是C++11时引入的特性 Lambda的本质是一个特殊的、匿名的类类型。它是一个带有 阅读全文
posted @ 2023-10-03 19:31 天空之城00 阅读(26) 评论(0) 推荐(0)
摘要:title: 宏定义污染与规避 date: 2022-11-27T15:44:58Z lastmod: 2022-11-27T15:45:49Z 宏定义污染与规避 问题 众所周知,宏定义是没有名称空间​的限制的,所以宏定义很容易导致的命名冲突。比如下代码: // msvc 2022 #include 阅读全文
posted @ 2023-10-03 19:31 天空之城00 阅读(310) 评论(0) 推荐(0)
摘要:title: 使用const引用延长变量生命周期 date: 2022-11-27T16:00:34Z lastmod: 2022-11-27T16:10:11Z 使用const引用延长变量生命周期 我们都知道const​ 引用在一定情况下会延长临时变量的生命周期,下面我们看一下具体哪些情况能够延长 阅读全文
posted @ 2023-10-03 19:31 天空之城00 阅读(483) 评论(0) 推荐(0)
摘要:title: 使用typeid进行运行时类型识别(RTTI) date: 2022-11-27T15:47:32Z lastmod: 2022-11-27T15:48:52Z Runtime Type Identification RTTI是运行阶段类型识别(Runtime Type Identif 阅读全文
posted @ 2023-10-03 19:31 天空之城00 阅读(84) 评论(0) 推荐(0)
摘要:title: C++学习笔记 date: 2022-11-18T16:57:58Z lastmod: 2022-11-18T16:57:58Z C++基础入门 1 C++初识 1.1 第一个C++程序 编写一个C++程序总共分为4个步骤 创建项目 创建文件 编写代码 运行程序 1.1.1 创建项目 阅读全文
posted @ 2023-10-03 19:27 天空之城00 阅读(100) 评论(0) 推荐(0)
摘要:title: MFC 学习笔记 date: 2022-11-18T17:56:21Z lastmod: 2022-11-18T17:56:21Z MFC 学习笔记 MFC的概念和作用 什么是MFC? 全称是Microsoft Foundation Class Library,我们称作微软基础类库 它 阅读全文
posted @ 2023-10-03 19:25 天空之城00 阅读(259) 评论(0) 推荐(0)
摘要:title: Win32 高级编程 date: 2022-11-18T17:55:02Z lastmod: 2022-11-18T17:55:02Z Win32 高级编程 应用程序分类 应用程序分类 控制台程序Console DOS程序,本身没有窗口,通过Windows DOS窗口执行 窗口程序 拥 阅读全文
posted @ 2023-10-03 19:24 天空之城00 阅读(128) 评论(0) 推荐(0)