class StudentDoc: def __init__ (self,number,name,major,score): self.number=number self.name=name self.major=major self.score=score def info(self): pri ...
分类:
其他好文 时间:
2021-06-02 19:27:35
阅读次数:
0
class StudentDoc: def __init__(self,student_number,name,major,score): self._student_number=student_number self._name=name self._major=major self._scor ...
分类:
其他好文 时间:
2021-06-02 18:02:42
阅读次数:
0
1.1 应急响应(incident response) 或 (Emergency response) 1.2 应急响应工作分为: 1.未雨绸缪->开展风险评估,安全通告预警; 2.盲羊补牢->发现事件,进行系统备份,病毒检测,后门清理,清楚病毒或后门,隔离,系统恢复,调查追踪,入侵取证; 1.3 企 ...
分类:
其他好文 时间:
2021-04-15 12:42:39
阅读次数:
0
垃圾回收机制 分代回收理论 新生代:绝大部分的对象都是朝生夕死 老年代:熬过多次垃圾回收的对象就越难回收 GC 分类 新生代回收(Minor GC/Young GC) 老年代回收(Major GC/Old GC) 只有 CMS 垃圾回收器会有这个单独的回收老年代的行为 Major GC 有说指是老年 ...
分类:
其他好文 时间:
2021-04-07 10:38:11
阅读次数:
0
rootfs:根文件系统 /boot:系统启动相关的文件,如内核、initrd,以及grub(bootloader) /dev:设备文件 设备文件: 块文件:随机访问,数据块 字符设备:线性访问,按字符为单位 设备号:主设备号(major)和次设备号(minor) /etc:配置文件 /home:管 ...
分类:
系统相关 时间:
2021-03-15 10:49:44
阅读次数:
0
.pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 4 5 CONFIG += c++11 6 7 # The following define makes your compiler emit warn ...
.pro 1 QT += core gui 2 3 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 4 5 CONFIG += c++11 6 7 # The following define makes your compiler emit warn ...
.pro文件 在使用Qt向导生成的应用程序.pro文件格式如下: QT += core gui //包含的模块 greaterThan(QT_MAJOR_VERSION, 4): QT += widgets //大于Qt4版本 才包含widget模块 TARGET = QtTest //应用程序名 ...
分类:
其他好文 时间:
2020-09-24 00:05:27
阅读次数:
46
CentOS版本:8.2 假设我要用的账号为:test 默认安装完毕后,使用非root账号执行带sudo的命令,想获取管理员权限执行此命令,发现无法执行,提示: test is not in the sudoers file, This incident will be reported. 解决方法 ...
分类:
其他好文 时间:
2020-09-18 01:03:37
阅读次数:
30
Recently I was struggled with a customer incident and finally I realized that I didn’t understand the Edm.DateTime quite clearly. So I spend some time ...
分类:
其他好文 时间:
2020-09-17 17:05:10
阅读次数:
27