热门标签
更多>
搜索结果
查询Tags标签: CBase,共有 2条记录-
c++中虚函数的默认值
1. 虚函数中存在默认值时,需要注意其函数调用中默认值:class cbase { public:virtual void func(int a = 10){cout << "this is cbase func:" << a << endl;} };class csub : public cbase { public:void func(int a = 20){cout << &…
2021/4/15 20:25:14 人评论 次浏览 -
滴水逆向初级-C++(三)
3.1.封装 1、什么是封装: 将函数定义到结构体内部,就是封装。 2、什么是类: 带有函数的结构体,称为类。 3、什么是成员函数: 结构体里面的函数,称为成员函数。 #include<stdio.h> #include<stdlib.h> #include<windows.h>struct Student {int a;int …
2021/4/9 14:25:53 人评论 次浏览