
C++
Mathematic_feng
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C++之字符指针数组与整数指针数组
#include <iostream> using namespace std; const int MAX = 4; int main() { const char *names[MAX] = { "Zara Ali", "Hina Ali", "Nuha Ali", "Sara Ali", }; for (int i = 0; i < MAX; i++) { cout &l.原创 2020-07-26 22:40:07 · 227 阅读 · 0 评论 -
C++指针的算术运算操作
short int height[10]; //int型的数组(short int 每个数据2字节) cout << "height "<< height << endl << "height+1 "<< height + 1 << endl << "&height[0] " << &height[0] << endl .原创 2020-07-26 22:08:50 · 269 阅读 · 0 评论 -
C++ stctic存储类
static 存储类指示编译器在程序的生命周期内保持局部变量的存在,而不需要在每次它进入和离开作用域时进行创建和销毁。因此,使用 static 修饰局部变量可以在函数调用之间保持局部变量的值。 static 修饰符也可以应用于全局变量。当 static 修饰全局变量时,会使变量的作用域限制在声明它的文件内。 在 C++ 中,当 static 用在类数据成员上时,会导致仅有一个该成员的副本被类的所有对象共享。 #include <iostream> // 函数声明 void fun原创 2020-07-24 22:05:24 · 206 阅读 · 0 评论 -
C++之构造函数与析构函数
构造函数例题(1) 例4_1修改版1 //类定义 class Clock { public: Clock(int newH,int newM,int newS);//构造函数 void setTime(int newH, int newM, int newS); void showTime(); private: int hour, minute, second; }; //构造函数的实现: Clock::Clock(i...原创 2020-06-29 21:04:19 · 390 阅读 · 0 评论 -
C++内联函数
截图来自清华大学郑莉老师的C++课程原创 2020-06-26 14:34:46 · 138 阅读 · 0 评论 -
C++中的引用做参数
普通的参数传递实质上是值传递,是单向传递,而C++中的引用做参数实现了双向传递。 普通的参数传递: C++中的引用类型 截图来自清华大学郑莉老师的C++课程原创 2020-06-24 21:01:47 · 349 阅读 · 0 评论 -
C++中的不限定作用域的枚举类型
清华大学郑莉老师讲解的枚举类型 这里后面的TUE等自动为2,3,4,5,6,如果Mon没有给定的话,就是8,9,10..... # include<iostream> # include<string> using namespace std; enum GameResult { Win, Lose, Tie, Cancle }; int main(){ GameResult result; enum GameResult omit = Cancl原创 2020-06-24 15:59:30 · 485 阅读 · 0 评论