——派生类需要自己的构造函数。 派生类可以根据需要添加额外的数据成员和成员函数。 class RatedPlayer : public TableTennisPlayer { private: unsigned int rating; // add a data member public: Rat ...
分类:
编程语言 时间:
2020-06-21 16:12:04
阅读次数:
52
三种特殊数据类型 geospatial 地理位置 朋友的定位,附近的人,打车距离计算。 Redis的Geo 可以查询一些测试数据 http://www.jsons.cn/lngcode/ 可以推算地理位置之间的信息,两地之间的距离,周围的人 参数:key 值(经度、纬度,名称) geoadd 添加地 ...
分类:
其他好文 时间:
2020-06-17 19:47:09
阅读次数:
78
修改B的设备编号 <H3C>system-view System View: return to User View with Ctrl+Z. [H3C]irf member 1 renumber 2 Renumbering the member ID may result in configura ...
分类:
其他好文 时间:
2020-06-16 13:30:42
阅读次数:
92
在pom文件加入 <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTest ...
分类:
Web程序 时间:
2020-06-15 18:05:30
阅读次数:
118
基本函数 1 添加 sadd 2 获取集合数 scard 3 差集 sdiff 4 交集 sinter 5 判断是否寻在 sismember 6 所有成员 smembers 7 将 member 元素从 source 集合移动到 destination 集合 SMOVE source destina ...
分类:
其他好文 时间:
2020-06-15 14:17:39
阅读次数:
50
类和对象 在类定义中,有字段filed和方法method,统称为成员member,通过val和var定义字段指定对象的变量。通过def定义方法。(和Python一样)实例一个类后,会指派一些内存来保存对象的状态图。个人理解对通过地址间映射,有一块内存保存值。 对字段声明私有。在var、val前加。不 ...
分类:
其他好文 时间:
2020-06-13 13:22:18
阅读次数:
51
卸载时报错 /usr/sbin/deluser: The user `xxx' is not a member of group `input'. dpkg: error processing package touchpad-indicator (--purge) 即当前用户xxx不在input ...
分类:
系统相关 时间:
2020-06-12 12:36:53
阅读次数:
97
dedecms的/member/soft_add.php中,对输入模板参数$servermsg1未进行严格过滤,导致攻击者可构造模版闭合标签,实现模版注入进行GETSHELL。 打开文件/member/soft_add.php,搜索(大概在154行): $urls .= "{dede:link is ...
分类:
数据库 时间:
2020-06-11 13:27:09
阅读次数:
69
基础 C++的类支持三种member function:static,nonstatic,virtual。 nonstatic member function 编译器会将nonstatic member function转换为普通外部函数。 1 #include <iostream> 2 3 usi ...
分类:
编程语言 时间:
2020-06-11 13:25:23
阅读次数:
60
漏洞名称:dedecms cookies泄漏导致SQL漏洞 补丁文件:/member/article_add.php 补丁来源:云盾自研 漏洞描述:dedecms的文章发表表单中泄漏了用于防御CSRF的核心cookie,同时在其他核心支付系统也使用了同样的cookie进行验证,黑客可利用泄漏的coo ...
分类:
数据库 时间:
2020-06-11 13:23:57
阅读次数:
57