摘要: UML(统一建模语言)类图关系 泛化关系(Generalization): 继承(is a)、实线+空心三角形 **实现关系(Realization):**实现接口或继承抽象类、虚线+空心三角形 **组合关系(Composition):**成员变量(has a)部分不能脱离整体而独立存在、一条实线+ 阅读全文
posted @ 2022-05-12 17:38 pizisu 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 文件名使用双引号 "" 括起来 del/f/s/q C:\xxx\"File Name" 阅读全文
posted @ 2022-05-12 16:08 pizisu 阅读(267) 评论(0) 推荐(0) 编辑
摘要: **解决:**耦合性、内聚性、可维护、可扩展、重用性、灵活性 **7大原则:**单一职责、接口隔离、依赖倒置、迪米特、开闭、里氏替换、合成复用 **单一职责:**一个类只负责一项职责(类功能单一或方法功能单一) **接口隔离:**客户端不应该依赖他不需要的接口 (最小接口:用不到的方法拆出去)(根据 阅读全文
posted @ 2022-05-12 10:41 pizisu 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 字符串的**split()**方法不排除空 "".split(",").length //值为1 common.lang3包下:**StringUtils.split()**排除空 StringUtils.split("",",").length //值为0 阅读全文
posted @ 2022-05-11 17:38 pizisu 阅读(435) 评论(0) 推荐(0) 编辑
摘要: NetCore Linux 安装卸载 1.SDK安装 .Net Core 3.1 SDK sudo rpm -Uvh https://packages.microsoft.com/config/centos/7/packages-microsoft-prod.rpm sudo yum install 阅读全文
posted @ 2021-11-17 17:36 pizisu 阅读(676) 评论(0) 推荐(0) 编辑
摘要: ZXing.Net.Bindings.SkiaSharp Linux环境报错解决 报错代码 //docker netcore3.1 var stream = HttpUitl.GeMemoryStream(url); using (var skiaImage = SkiaSharp.SKBitmap 阅读全文
posted @ 2021-11-10 16:41 pizisu 阅读(912) 评论(0) 推荐(0) 编辑
摘要: netcore3.1 ZXing.Net 解析二维码图片 nuget 添加 ZXing.Net.Bindings.SkiaSharp 使用 var txt = string.Empty; string path = "xxx.jpg"; var stream = System.IO.File.Ope 阅读全文
posted @ 2021-09-23 14:33 pizisu 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 在vue生命周期的updated()时初始化swiper updated() { //解决轮播图 动态加载数据 loop失效问题 if (this.banners.length > 1) { this.swiper.init(); } }, 参考自:https://segmentfault.com/ 阅读全文
posted @ 2021-09-18 11:43 pizisu 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 简易的命令行入门教程(参考gitee) git config --global user.name "姓名" git config --global user.email "邮箱" 创建 git 仓库 mkdir dirName cd dirName git init touch README.md 阅读全文
posted @ 2021-09-17 10:30 pizisu 阅读(85) 评论(0) 推荐(0) 编辑
摘要: git git clone xxx git status git add . git commit -m 'xxx' git push git pull 阅读全文
posted @ 2021-09-17 10:19 pizisu 阅读(23) 评论(0) 推荐(0) 编辑