摘要: 1、MySQL mysql -u root -p --连接数据库 update mysql.user set authentication_string=password('123456') where user='root' and Host='localhost'; --修改用户密码 flush 阅读全文
posted @ 2022-01-16 19:12 nakano_may 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 23种设计模式 设计模式的分类 总体来说设计模式分为三大类: 创建型模式,共五种:工厂方法模式、抽象工厂模式、单例模式、建造者模式、原型模式。 结构型模式,共七种:适配器模式、装饰器模式、代理模式、外观模式、桥接模式、组合模式、享元模式。 行为型模式,共十一种:策略模式、模板方法模式、观察者模式、迭 阅读全文
posted @ 2022-01-16 17:30 nakano_may 阅读(95) 评论(0) 推荐(0) 编辑