菜鸟的博客

纵有疾风起,人生不言弃。

导航

上一页 1 2 3 4 5 6 ··· 33 下一页

2024年11月12日 #

调用百度的接口,实现多种语言的翻译

摘要: 先把工具类下载下来,直接拖进去: /** * Base64 工具类 */ public class Base64Util { private static final char last2byte = (char) Integer.parseInt("00000011", 2); private s 阅读全文

posted @ 2024-11-12 14:26 hhmzd233 阅读(2) 评论(0) 推荐(0) 编辑

2024年11月11日 #

软件设计-Tutorial15

摘要: ```mermaid classDiagram Approver <|-- Director Approver <|-- DepartmentManager Approver <|-- VicePresident Approver <|-- President Approver <|-- Staff 阅读全文

posted @ 2024-11-11 23:45 hhmzd233 阅读(1) 评论(0) 推荐(0) 编辑

软件设计-Tutorial14

摘要: ```mermaid classDiagram MatchmakingService <|.. RealMatchmakingService MatchmakingService <|.. MatchmakingProxy class MatchmakingService { +findPartne 阅读全文

posted @ 2024-11-11 23:33 hhmzd233 阅读(0) 评论(0) 推荐(0) 编辑

软件设计-Tutorial13

摘要: ```mermaid classDiagram class ChessPiece { <<abstract>> +String color +display(int x, int y) } class WhiteChessPiece { +display(int x, int y) } class 阅读全文

posted @ 2024-11-11 23:28 hhmzd233 阅读(0) 评论(0) 推荐(0) 编辑

软件设计-Tutorial12

摘要: package Tutorial12; // 定义各个硬件设备和软件的类 class Memory { public boolean check() { System.out.println("Memory self-checking..."); // 假设返回true表示自检成功 return t 阅读全文

posted @ 2024-11-11 22:15 hhmzd233 阅读(1) 评论(0) 推荐(0) 编辑

2024年11月10日 #

软考结束~

摘要: 感觉大题好简单,选择题有点不会~运气好的话应该能过吧~过不了也没事儿,毕竟没花多少时间复习,下面这里笑死我了 阅读全文

posted @ 2024-11-10 23:10 hhmzd233 阅读(4) 评论(0) 推荐(0) 编辑

2024年11月8日 #

嗯!复习软考了!

摘要: 今天不学习,明天变垃圾~呜呜呜呜~ 阅读全文

posted @ 2024-11-08 21:56 hhmzd233 阅读(3) 评论(0) 推荐(0) 编辑

2024年11月7日 #

今天好困

摘要: 老是有事情打扰我学软考!!!烦死了!!!困死了!! 阅读全文

posted @ 2024-11-07 22:40 hhmzd233 阅读(3) 评论(0) 推荐(0) 编辑

2024年11月6日 #

软件设计-Tutorial11

摘要: [实验任务一]:手机功能的升级 用装饰模式模拟手机功能的升级过程:简单的手机(SimplePhone)在接收来电时,会发出声音提醒主人;而JarPhone除了声音还能振动;更高级的手机(ComplexPhone)除了声音、振动外,还有灯光闪烁提示。 类图: ```mermaid classDiagr 阅读全文

posted @ 2024-11-06 09:43 hhmzd233 阅读(1) 评论(0) 推荐(0) 编辑

软件设计-Tutorial10

摘要: [实验任务一]:组合模式 用透明组合模式实现教材中的“文件夹浏览”这个例子。 package Tutorial10; abstract class FileSystemComponent { public void add(FileSystemComponent component) { throw 阅读全文

posted @ 2024-11-06 08:55 hhmzd233 阅读(2) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 33 下一页