06 2019 档案
摘要:https://www.cnblogs.com/linuxAndMcu/p/10009721.html 《C语言嵌入式系统编程修炼》
阅读全文
摘要:#include #include using namespace std; class Person { public: //无参(默认)构造函数 Person() { cout << "no" << endl; } //有参构造函数 Person(int a) { age = a; cout << "...
阅读全文
摘要:members shall be initialized in the member initialization list,这个时候,必须使用member initialization list来初始化,因为类中嵌套了另一个类。
阅读全文
摘要:运行结果: 指向class的指针。 This example makes use of several operators to operate on objects and pointers (operators *, &, ., ->, []). They can be interpreted
阅读全文
摘要:Member initialization in constructorsWhen a constructor is used to initialize other members, these other members can be initialized directly, without
阅读全文
摘要:http://www.cplusplus.com/ 有各个函数、语法的实例代码,可以在线运行http://cpp.sh/不支持中文字符,不错。
阅读全文
摘要:https://github.com/Skiars/SerialTool A cross platform Serial-Port/TCP/UDP debugging tool. SerialTool是一个跨平台的串口/网络调试工具。此工具支持串口调试助手、终端、波形显示和文件传输等功能。该工具的源
阅读全文
摘要:嵌入式脚本语言 Berry github网址 :https://github.com/Skiars/berry Berry 是一款面向小型嵌入式系统的脚本语言,目前发布了 0.1.0 版本。相比于其他脚本语言,Berry 更加精简,因此更适合在单片机上运行。该版本的语言主要特性为: 基本类型 数值类
阅读全文
摘要:#include #include #include #include using namespace std; int main() { vector fi; cout se(6,20); cout::iterator it = se.begin(); it th(se.begin()+2,se.end()); cout::iterator it = th.begin();...
阅读全文
摘要:一、什么是vector? 向量(vector)是一个封装了动态大小数组的顺序容器(Sequence Container)。跟任意其它类型容器一样,它能够存放各种类型的对象。可以简单的认为,向量是一个能够存放任意类型的动态数组。 二、容器特性 1.顺序序列 顺序容器中的元素按照严格的线性顺序排序。可以
阅读全文
摘要:#include #include #include using namespace std; class MySTLString { public: MySTLString(); MySTLString(int count, char ch); MySTLString(const char* s); const char& front() const; const...
阅读全文
摘要:其中,teacher是virtual.cpp中定义的class。
阅读全文
摘要:由于硬件限制,学习在touchgfx暂时在Windows下模拟仿真,了解其基本原理和有一个基本感性认识,因此安装了VS Express 2013 for Desktop轻量级编译器。 有TouchGFX 4.10.0 Designer基于stm32f746G-discover开发板生成的按键例程中,
阅读全文
摘要:摘录自百度知道 在编辑代码或者复制网上的代码段到VS2013中时,代码会显示的非常乱,这里便可以通过 vs2013中的快捷键进行自动对齐操作【ctrl+k+f】,类似的快捷操作还有很多,在这里给大家总结一下,以提高编写代码的效率! visual studio 2013 中常用的一些快捷键一、代码自动
阅读全文
摘要:mkdir gpio cp -r build/ /home/yl/gpio 这样就把build目录及所有文件都拷贝到gpio文件夹中。
阅读全文
摘要:chmod 777 -R * 的意思是把当前目录所有文件(递归的)的属性全部为7
阅读全文
摘要:https://www.jianshu.com/p/70ca94872418 C++类模板,你看我就够了 值得学习~
阅读全文
摘要:可以创建一个由同一个类的所有对象共享的成员变量。要创建这样的成员,只需将关键字 static 放在变量声明的前面,如下面的类所示: 接下来,在类之外放置一个单独的变量定义, 例如: int StatDemo::x; 在这个例子中,成员变量 x 将被 StatDemo 类的所有对象共享。当一个类对象将
阅读全文
摘要:++ 运算符,还可分为前缀 ++ 和后缀 ++ 运算符。 重载前缀++运算符 C++ 允许重载前缀运算符,以使表达式 ++b 能递增 b 的长度值,并返回结果对象。该运算符可以作为成员函数来重载,这使得它的单个形参是隐含的, 所以重载运算符不需要形参。 以下是Length类的一部分,它显示了 ++
阅读全文
摘要:有两种方法可以使运算符重载: 使重载运算符成为该类的成员函数。这允许运算符函数访问类的私有成员。它也 允许函数使用隐式的this指针形参来访问调用对象。 使重载的成员函数成为独立分开的函数。当以这种方式重载时,运算符函数必须 声明为类的友元才能访问类的私有成员。 某些运算符(如流输入运算符 >> 和
阅读全文
摘要:函数体=0的虚函数称为“纯虚函数”。包含纯虚函数的类称为“抽象类” #include class Animal // This Animal is an abstract base class { protected: std::string m_name; public: Animal(std::string name) : m_name(name) ...
阅读全文
摘要:input cmdMinput name and levelli 3input cmdminput name and levelrr4input cmdeinput namebffdinput cmdeinput namesdfsdfsdfinput cmds3 li4 rrbffdsdfsdfsd
阅读全文
摘要:0 h1 e2 l3 l4 w5 o6 r7 l8 !0 h1 e2 l3 l4 w5 o6 r7 l8 !Number of students: 3Enter marks for student #1:3Enter marks for student #2:2Enter marks for stu
阅读全文
摘要:s1 is: Anatoliys2 is: hellos3 is: Anatoliys4 is: this is aCs5 is: s aCs6 is: ***************s7 is: thiss8 is: Anatoliys9 is: Anatoliyhellohello
阅读全文
摘要:运行结果: 构造函数,申请了100个char元素的动态空间拷贝构造函数,保证name指向的是自己单独的内存块构造函数,申请了100个char元素的动态空间lill, age 666赋值函数,保证name指向的是自己单独的内存块John, age 56John, age 56析构函数,释放了100个c
阅读全文
摘要:计算机显示模式[编辑] 24比特模式[编辑] 每像素24位(比特s per pixel,bpp)编码的RGB值:使用三个8位无符号整数(0到255)表示红色、绿色和蓝色的强度。这是当前主流的标准表示方法,用于真彩色和JPEG或者TIFF等图像文件格式里的通用颜色交换。它可以产生一千六百万种颜色组合,
阅读全文
摘要:函数的返回主要分为以下几种情况: 1、主函数main的返回值: 允许主函数main没有返回值就可结束;可将主函数main返回的值视为状态指示器,返回0表示程序运行成功,其他大部分返回值则表示失败。 2、返回非引用类型: 函数的返回值用于初始化在调用函数时创建的临时对象(temporary objec
阅读全文
摘要:文件——首选项——设置
阅读全文
摘要:安装vscdoe,安装tdm-gcc-64编译器,这样可以自动把mingw的目录添加到环境变量中,其实安装其他编译器本版都可以,只要手动添加环境变量即可。平台win10-64位。此文参考了哔哩哔哩的配置教程:https://www.bilibili.com/video/av11134188/?p=3
阅读全文
摘要:输出: Hello, Hal. I don't like your Girlfriend. I know her address: 0x1b1b70 Where's 4? Oh, here it is: 0x72fc6c ps=0x72fbb0 pd=0x72fc08 pi=0x72fc3c 添加另
阅读全文
摘要:输出: pos of 3 = 4 Pointer of '3' in 'int_vector': 0x1c1554 Pointer of 'Hello' in 'str_vector': 0x1c1a50 Pointer of '11.1' in 'float_vector': 0 Pointer
阅读全文
摘要:转自:https://www.cnblogs.com/jiangxinnju/p/4908575.html 欢迎关注我的社交账号: 博客园地址: http://www.cnblogs.com/jiangxinnjuGitHub地址: https://github.com/jiangxincode知乎
阅读全文
摘要:运行结果:The area of Cuboid is 2200The volume of Cuboid is 6000The area of Cube is 1350The volume of Cube is 3375本例中定义了四个类,它们的继承关系为:Line --> Rec --> Cuboi
阅读全文
摘要:MinGW Distro - nuwen.net
阅读全文
摘要:FLASH是用来存储程序的,SRAM是用来存储程序运行中的中间变量
阅读全文
摘要:目前Flash主要有两种NOR Flash和NADN Flash。NOR Flash的读取和我们常见的SDRAM的读取是一样,用户可以直接运行装载在NOR FLASH里面的代码,这样可以减少SRAM的容量从而节约了成本。 NAND Flash没有采取内存的随机读取技术,它的读取是以一次读取一块的形式
阅读全文
摘要:Make sure the selected Windows SDK is installed:Properties -> Configuration Properties -> General -> Windows SDK Version. 1. Right-Click on the Projec
阅读全文