/Arduino_Cpp

Learning C++ on Arduino.

Primary LanguageC++GNU General Public License v2.0GPL-2.0

Learning C++ with Arduino

综述

-我知道C++非常繁杂,不容易从深层次掌握。但是好巧不巧,我想深入学习一个被很多人称之为玩具的Arduino,C++却成了拦路虎。学无止境,尝试去接受一种新的编程范式又有何不可?正好,这次的Arduino终于能够发挥其价值所在了!

声明

-这次的学习,不想整理什么教程,还是一份自己随性的学习笔记。路过人千万别当作教程,以免被我带偏了!接下来,进入正题了。

学习笔记汇总

code: 01_hello_world

code: 02_type_conversion

code: 03_quiet_conversion

code: 04_math

code: 05_function

code: 06_function_overloading

code: 07_string

code: 08_struct

code: 09_value_and_ref

  • vector

尝试去测试vector,在Arduino的开发环境中似乎没有提供这样的功能。进行对<vector>的include操作也失败。或许,在嵌入式中使用不是很多,后面如果真是遇到了再在别人的库设计中学习。

code: 11_method

code: 12_constructor

code: 13_namespace

code: 14_class_public

code: 15_default_patameter_value

code: 16_constructor_default_process

code: 17_function_in_class

code: 18_private

code: 19_element_init

code: 20_assignment_for_vars