第一次实验指南——逆向软件设计与开发 学号:1832410 班级:19级软工2班 姓名:赵凯悦 题目:关于网上购书系统的功能扩展(c++) 一、 系统环境: Windows xp以上版本,电脑 二、 设计内容: 程序一共定义五个类,继承关系如图所示 首先是主菜单的主函数,以及一些相关的功能:会员登录 ...
分类:
其他好文 时间:
2021-03-16 13:44:16
阅读次数:
0
font2 = {'family': 'Times New Roman', 'weight': 'normal', 'size': 12, } ax.legend(loc='lower center', bbox_to_anchor=(0.5, 1), fancybox=True, shadow=T ...
分类:
其他好文 时间:
2021-03-16 12:03:49
阅读次数:
0
leader https://vi.stackexchange.com/questions/836/what-is-leader Vim is full of various commands, which are assigned to almost all keys on the keyboar ...
分类:
系统相关 时间:
2021-03-15 11:29:06
阅读次数:
0
一个在90末尾,00开头中间的00后一枚,对这种比较喜欢感兴趣,啥也不会,就是随便自己学学,大佬勿喷,大神求带! 1 <style> 2 div { 3 margin: 400px auto; 4 font-size: 40px; 5 text-align: center; 6 } 7 p { 8 ...
分类:
其他好文 时间:
2021-03-15 11:24:09
阅读次数:
0
1、将函数存储在模块里 def fun1(x): ## 在模块module1.py中定义三个函数 print(x.upper()) def fun2(x): print(x.title()) def fun3(x): print(" ",x) 2、测试能否直接调用函数 >>> fun1("aaa") ...
分类:
编程语言 时间:
2021-03-15 10:39:46
阅读次数:
0
assume cs:code,ss:stack stack segment db 128 dup (0) stack ends code segment start: mov ax,stack mov ss,ax mov sp,128 call copy_boot ;设置CS:IP为0:7e00h ...
分类:
编程语言 时间:
2021-03-11 20:35:32
阅读次数:
0
###1、双标签 <h1>标题标签</h1> <!--h1-h6 --> <p>段落标签</p> <center>居中文字</center> <b>加粗</b> <strong>加粗 强调意义,语义化</strong> <i>倾斜</i> <em>倾斜 强调意义,语义化</em> <u>下划线</u ...
分类:
Web程序 时间:
2021-03-11 19:18:47
阅读次数:
0
#include <bits/stdc++.h> using namespace std; const double EPS = 1e-8; const int N = 1e5+10; struct Point{ double x, y; }; int n; Point p[N]; bool equ ...
分类:
其他好文 时间:
2021-03-10 12:57:35
阅读次数:
0
优雅地关机或重启 我们编写的Web项目部署之后,经常会因为需要进行配置变更或功能迭代而重启服务,单纯的kill -9 pid的方式会强制关闭进程,这样就会导致服务端当前正在处理的请求失败,那有没有更优雅的方式来实现关机或重启呢? 阅读本文需要了解一些UNIX系统中信号的概念,请提前查阅资料预习。 优 ...
分类:
其他好文 时间:
2021-03-09 13:15:26
阅读次数:
0
转自博客:https://www.cnblogs.com/sheng-jie/p/7063011.html 1.引言 之前的一篇文章事件总线知多少(1),介绍了什么是事件总线,并通过发布订阅模式一步一步的分析重构,形成了事件总线的Alpha版本,这篇文章也得到了大家的肯定和积极的反馈和建议,在此谢谢 ...
分类:
其他好文 时间:
2021-03-08 14:18:43
阅读次数:
0