摘要: Windows编程: 【规则1】类名和函数名用大写字母开头的单词组合而成。 class StudentMessage { } void Function() { } 【规则2】变量和参数用小写字母开头的单词组合而成 bOOL flag; int drawMode; 【规则3】常量全用大写的字母,用下 阅读全文
posted @ 2020-02-24 21:08 等闲 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 这里强调一点就是关extern的声明: extern在声明中最主要的作用就是告诉编译器别的文件引用了全局变量XXXX。 举例: 有一个工程名字叫 Project1。 Project1下面有两个.cpp源文件,分别为main.cpp和other.cpp other.cpp内容如下: 1 char g_ 阅读全文
posted @ 2020-02-24 20:36 等闲 阅读(637) 评论(0) 推荐(0) 编辑
摘要: 练习2.10:下面变量的初始值是什么? 1 #include<iostream> 2 #include<Windows.h> 3 4 using namespace std; 5 6 7 std::string g_str; 8 int g_int; 9 10 int main(void) 11 { 阅读全文
posted @ 2020-02-24 20:24 等闲 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 初遇到constexpr真的是有点懵比,看了很多博客也没看懂,不知道是我太笨,还是别人写的太深奥?总之经过一番折腾算是入门了。一下是我个人总结,有不对的地方望指出。 一、学习const与constexpr必须要先知道一下几个概念: 1、constexpr是constant expression的缩写 阅读全文
posted @ 2020-02-24 16:00 等闲 阅读(339) 评论(0) 推荐(0) 编辑
摘要: ASSERT:断言NAME // 准确陈述 assert - abort the program if assertion is false // assert(断言) - 如果断言(assertion)是错误的就终止这个程序。 SYNOPSIS // 概要 #include <assert.h> 阅读全文
posted @ 2020-02-22 19:21 等闲 阅读(346) 评论(0) 推荐(0) 编辑
摘要: 1、https://zh.cppreference.com/ 2、http://www.cplusplus.com/ 3、https://gcc.gnu.org/onlinedocs/libstdc++/libstdc++-html-USERS-4.3/ 阅读全文
posted @ 2020-02-16 12:43 等闲 阅读(517) 评论(0) 推荐(0) 编辑