作用:
封装的对象可以在对象触发行为时进行状态的记录与保存
也可以进行状态的回退,恢复之前的状态
示例: class Editor{constructor(){this.allText }edit(text){this.allText text}saveNow(){return new EditorText(this.allText)}backspacing(editorText){this.allText…
goland 下载依赖 go mod tidy:保持依赖整洁
go mod tidy 命令的作用是清理未使用的依赖,并更新 go.mod 以及 go.sum 文件。
go mod tidy 和 go mod vendor 两个命令是维护项目依赖不可或缺的工具。go mod tidy 确保了项目的 go.mod 文件精简且准确&…