最新 最热

Airoha---1536---一些名词得解释

HFP:Hands-Free Profile,符合蓝牙免提规范,免提配置文件AVRCP:Audio/Video Remote Control Profile ,音频/视频遥控配置文件HID:Human Interface Device Profile ,人机界面设备配置文件SPP:Serial Port Prof......

2020-08-31
1

SPI协议

SPI是串行外设接口(Serial Peripheral Interface)的缩写。是 Motorola 公司推出的一 种同步串行接口技术,是一种高速的,全双工,同步的通信总线。

2020-08-31
1

java基础:注解的定义与使用

乔布斯重新定义了手机,罗太君重新定义了傻逼。自然而然的就给罗太君贴上了傻逼的标签,不熟悉老罗的人,不知道他当教师,办博客,做手机,殊不知老罗还有“理想主义者”,“单口相声演员”,“段子手”等等标签...

2020-08-22
0

面向对象的7种设计原则(2)-接口隔离原则

其实通俗来理解就是,不要在一个接口里面放很多的方法,这样会显得这个类很臃肿。接口应该尽量细化,一个接口对应一个功能模块,同时接口里面的方法应该尽可能的少,使接口更加灵活轻便。或许有的人认为接口隔离原则和单一职责...

2020-08-22
0

架构师内功心法之设计原则

学习设计原则,学习设计模式的基础。在实际开发过程中,并不是一定要求所有代码都遵循设计原则,我们要考虑人力、时间、成本、质量,不是刻意追求完美,要在适当的场景遵循设计原则,体现的是一种平衡取舍,帮助我们设计出更加优雅...

2020-08-12
1

漫画:设计模式之 “外观模式”

于是肯德基对这些菜品做了一定的组合,推出了各种各样的套餐。比如A套餐,包括汉堡/薯条/可乐;B套餐,包括汉堡/鸡翅/沙拉/可乐:

2020-08-11
0

设计模式之装饰器模式

Attach additional responsibilities to an object dynamically keeping the same interface. Decorators provide a flexible alternative to subclassing for extending f...

2020-08-10
0

设计模式之外观模式

Provide a unified interface to a set of interfaces in a subsystem. Facade defines a higher-level interface that makes the subsystem easier to use.

2020-08-10
0

设计模式之抽象工厂模式

Provide an interface for creating families of related or dependent objects without specifying their concrete classes.

2020-08-10
0

设计模式之适配器模式

Convert the interface of a class into another interface clients expect. An adapter lets classes work together that could not otherwise because of incompatible i...

2020-08-06
1