C++
C++学习笔记
lcjia_you
这个作者很懒,什么都没留下…
展开
-
4.C++对象和类
#ifndef STOCK00_H#define STOCK00_H#include <string>class Stock{private: std::string company; long shares; double share_val; double total_val; void set_tot() { total_val = shares * sh...原创 2020-02-12 20:29:35 · 114 阅读 · 0 评论 -
3.C++循环和函数
基于范围的循环-C++11只读版本int a[3] = {1, 2, 3};for (int i : a){ cout << i << endl; }// output:// 1// 2// 3可写版本 - 使用引用int a[3] = {1, 2, 3};for (int &i : a){ ++i; ...原创 2020-02-12 20:28:12 · 431 阅读 · 0 评论 -
2.C++复合类型
数组初始化规则int cards[4] = {1, 2, 3, 4}; //okayint hand[4]; // okayhand[4] = {1, 2, 3, 4} // not allowedhand = cards; // not allowed, 不允许静态数组相互赋值,必须单个单个赋值。可使用array取代short things[500] = {1} // 只有第0...原创 2020-02-12 20:24:58 · 616 阅读 · 0 评论 -
1.C++开始
名称空间 using编译指令名称空间是用来区分不同库的相同函数名,仅当引用头文件没有.h时使用名称空间。// 方式1:全部引用,可以直接调用std名称空间的全部函数。using namespace std;// 方式2:单独引用,仅可以直接调用std名称空间的cout和endl。using std::cout;using std::endl;变量的声明定义声明(defini...原创 2020-02-12 20:18:44 · 116 阅读 · 0 评论