
C++
Caroline_cheng
Android Camera 工程师
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C++基本语法---重载二元运算符
重载二元运算符原创 2022-06-05 09:16:59 · 156 阅读 · 0 评论 -
c++基本语法---重载一元运算符
重载一元运算符原创 2022-06-05 09:15:23 · 167 阅读 · 0 评论 -
c++基本语法---友元函数
#include <iostream>using namespace std;class Box{ private: double width; public: double length; friend void printWidth(Box box); void setWidth(double wid);};void Box::setWidth(double wid){ width = wid;}void printWidth(Box box){ cou原创 2022-05-25 08:44:26 · 123 阅读 · 0 评论 -
C++基本语法---命名空间
#include <iostream>using namespace std;namespace first_nameSpace{ void fun(){ cout << "Inside First_nameSpace" << endl; }}namespace second_nameSpace{ void fun(){ cout << "In side Second_nameSpace" << endl; }}原创 2022-05-24 22:04:32 · 127 阅读 · 0 评论 -
c++基本语法---拷贝构造函数
#include <iostream>using namespace std;class Line{ public: int getLength(); Line(int len); Line(const Line &obj); ~Line(); private: int *ptr; };Line::Line(int len){ cout << "Line 构造函数调用" << endl; ptr = new int; *ptr原创 2022-05-22 10:07:14 · 196 阅读 · 0 评论 -
c++基本语法---继承修饰符
#include <iostream>using namespace std;class A{ public: int a ; A(){ a1 = 1; a2 = 2; a3 = 3; a = 4; } void fun(){ cout << a << endl; cout << a1 << endl; cout << a2 << endl; cout << a原创 2022-05-21 21:36:13 · 225 阅读 · 0 评论 -
C++基本语法---vector的使用
#include <iostream>#include <vector>using namespace std;int main(){ vector<int> vec; //int i = 0 ; cout << "vector原始大小:" << vec.size() << endl; for (int i = 0 ; i < 5 ; i++){ vec.push_back(i); } co原创 2022-05-19 21:12:28 · 202 阅读 · 0 评论 -
C++基本语法---指针的使用
#include <iostream>using namespace std;int main(){ const int MAX = 3; int var[MAX] = {10,100,1000}; int *ptr = NULL; ptr = var; for (int i = 0 ;i < MAX ; i++){ cout << i << " ptr的值" << endl; cout << ptr <&l原创 2022-05-18 22:01:34 · 131 阅读 · 0 评论 -
C++基本语法---new_delete使用
#include <iostream>using namespace std;class Box{ public: Box(){ cout << "Box构造函数创建" << endl; } ~Box(){ cout << "Box析构函数调用" << endl; }};int main(){ double *ptr = NULL; ptr = new double; *ptr = 2949原创 2022-05-17 21:35:23 · 136 阅读 · 0 评论