
C++基本
akihiro_the_coder
这个作者很懒,什么都没留下…
展开
-
C++特殊的数据结构:struct
什么是structstruct是一种c++的数据结构,与class很相似。但是class具有一些struct不具有的特性,比如继承。struct主要用于存储一组数据,而class存储数据的同时也可以写入一些函数(methods)。Definition示例:struct Student {int id;string name;double gpa;}; //注意有分号struct允...原创 2019-02-11 13:51:53 · 392 阅读 · 0 评论 -
C++入门易错点:输入输出格式、cmath头文件、生成随机数易错点、switch、scope、文件读写
关于C++,小白应该知道的那些细节说在前面关于C++与JavaC++入门须知规范用户的输入Formatting outputCMATH头文件生成随机数The Switch StatementScope与变量的重名字关于读取/写入文件关于Vectors生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新...原创 2019-02-12 05:58:06 · 567 阅读 · 0 评论 -
C++ Final Study Guide Chap 14, 15
Chapter 14 - Static Member variables and Copy ConstructorsDo you know the difference between a static and a non-static member of a class?Do you understand the difference between a copy constructor,...原创 2019-03-19 06:08:51 · 248 阅读 · 0 评论