图书借阅管理系统 UMl 源码 适合大学生的作业
2023-03-12 19:19:05 1.86MB 图书系统 UMl 源码
1
plantuml2code 该项目旨在允许开发人员从Plant UML类图生成代码。 当前支持的语言: Python C 如何使用: 定义一个PlantUML类图: PlantUML是生成UML绘图的简单语法: 使用指定的语言和图表路径作为参数启动plant2code(也可以指定要在何处生成代码) $ plant2code python path/to/plantuml_diagram.txt /tmp/output 就是这样 ! 您的代码已生成,现在您应该按照待办事项指示(在代码内部以注释形式打印)完成代码。 说明文件: Usage: plant2code PLANT_UML_FILE [OPTION]... (1st form) or: plant2code PLANT_UML_FILE OUTPUT [O
2023-03-10 22:03:56 41KB Python
1
Thinking.In.Java.4th.Edition.pdf(英文版)
2023-03-07 16:36:10 4.61MB Thinking.In.Java pdf 第四版
1
是volume 1的课后答案,以前从网上下了几个,可是都不是,这个绝对正宗。先给2-1的答案。 2-1 Modify Hello.cpp so that it prints out your name and age (or shoe size, or your dog’s age, if that makes you feel better). Compile and run the program. Solution: The original Hello.cpp appeared in the text as follows: // Saying Hello with C++ #include // Stream declarations using namespace std; int main() { cout << "Hello, World! I am " << 8 << " Today!" << endl; } Here’s my rewrite: //: S02:Hello2.cpp #include using namespace std; int main() { cout << "Hello, World! I am Chuck Allison." << endl; cout << "I have two dogs:" << endl; cout << "Sheba, who is " << 5 << ", and" << endl; cout << "Muffy, who is 8." << endl; cout << "(I feel much better!)" << endl; } /* Output: Hello, World! I am Chuck Allison. I have two dogs: Sheba, who is 5, and Muffy, who is 8. (I feel much better!) */ ///:~ I chose to have separate statements that send output to cout, but I could have printed everything in a single statement if I had wanted, like the example in the text does. Note that in the case of Sheba’s age, I printed 5 as an integer, but for Muffy I included the numeral in the literal text. In this case it makes no difference, but when you print floating-point numbers that have decimals, you get 6 decimals by default. Bruce discusses later in the text how to control output of floating-point numbers.
2023-03-07 10:22:43 261KB thinking c++ 思想 编程
1
借书者模块的功能应该包括借书、还书、预定图书、查询个人信息、登录、查询借阅信息等六个功能。 “查询个人信息”是让用户能够修改密码和个人信息。其中,“还书”有一项扩展用例为“超期交纳罚金”。 图书管理员系统模块的功能应该包括登陆、预定、解除预定、处理借书等四个功能。其中,“处理借书”又扩展用例“收罚金”。 系统管理员模块的功能应该包括“登陆”“退出登陆” “更新标题”,“更新借书者”,“增加标题”“删除标题”“增加借书者”“删除借书者”“”增加书籍,“删除书籍”等十个功能。“更新标题”是泛化出“增加标题”“删除标题”。“更新借书者”泛化出“增加借书者”“删除借书者”。 “登录”和“退出登录”是让用户能够进入系统和安全退出系统。
2023-03-07 03:43:05 64KB UML 建模 图书馆管理系统
1
基于Kripke结构的UML状态图的形式语义和自动证明,赵也非,杨宗源,给UML赋予形式化的动态语义,可以在软件生命过程早期,对系统进行自动推导和证明。把模型检测应用于UML,是在软件架构中引入形式化
2023-02-27 21:34:44 328KB UML
1
UML用户指南(第2版)_书签版 UML用户指南(第2版)_书签版
2023-02-27 19:21:08 105.98MB UML
1
UML用户指南(第2版)中文,比较全面的介绍UML相关知识
2023-02-27 17:11:35 13.09MB UML 用户指南 中文 pdf
1
一个台湾教授做的ppt,很可爱 里面举了两个实例
2023-02-26 18:26:59 232KB UML 用例 ppt
1
需求类型:FURPS+模型 FURPS+ F:功能性(Functional) U:可用性(Usability) R:可靠性(Reliability) P:性能(Performance) S:可支持性(Supportablity) +:一些辅助性的和次要的因素 实现、接口、操作、包装、授权 用例需求是新的需求分析方法的核心 质量属性(需求)
2023-02-24 11:02:59 2.68MB uml 用例
1