企业网站建设费是无形资产吗,包头网站,南昌建设厅网站,网络营销 企业网站目录
享元模式#xff08;Flyweight Pattern#xff09;
享元模式的核心角色#xff1a;
优缺点
使用场景
注意事项
代码实现 享元模式#xff08;Flyweight Pattern#xff09; 享元模式#xff08;Flyweight Pattern#xff09;它通过共享对象来减少内存使用和提…目录
享元模式Flyweight Pattern
享元模式的核心角色
优缺点
使用场景
注意事项
代码实现 享元模式Flyweight Pattern 享元模式Flyweight Pattern它通过共享对象来减少内存使用和提高性能。享元模式的核心思想是共享当需要创建一个新对象时首先检查是否已经有与其相同的对象存在如果存在则直接返回该对象的引用如果不存在则创建一个新对象并将其加入对象池中以供下次使用。通过这种方式可以避免重复创建相同的对象从而减少内存占用和提高性能。 使用享元模式需要有两个前提1享元对象不可变当享元模式创建出来后它的变量和属性不会被修改2系统中存在大量重复对象这些重复对象可以使用同一个享元内存中只存在一份这样会节省大量空间。当然这也是为什么享元对象不可变的原因因为有很多引用变更的话会引起很多问题。
享元模式的核心角色
享元工厂Flyweight Factory负责创建和管理享元对象。它维护一个享元池Flyweight Pool用于存储已经创建的享元对象。享元对象Flyweight表示可以共享的对象。享元对象通常包含内部状态和外部状态。内部状态是不变的可以被多个对象共享外部状态是可变的每个对象都有自己的外部状态。
优缺点
1优点
缩小对象的创立升高内存中对象的数量升高零碎的内存提高效率。缩小内存之外的其余资源占用。
2缺点
为了使对象可以共享需要将一些不能共享的状态外部化这将增加程序的复杂性。读取享元模式的外部状态会使得运行时间稍微变长。
使用场景
系统有大量相似对象。需要缓冲池的场景。
注意事项
1注意划分外部状态和内部状态否则可能会引起线程安全问题。2这些类必须有一个工厂对象加以控制。
代码实现
package mainimport fmt// 一个文字编辑器需要处理大量的字符对象。每个字符对象都有自己的字体、大小和颜色等属性。由于字符对象可能非常多
// 如果每个字符对象都占用大量内存将导致内存消耗过大。我们希望能够通过共享相同属性的字符对象来减少内存使用。// 享元对象字符对象
type Character struct {char runefont stringsize intcolor string
}func (c *Character) Display() {fmt.Printf(Character: %c, Font: %s, Size: %d, Color: %s\n, c.char, c.font, c.size, c.color)
}// 享元工厂字符工厂
type CharacterFactory struct {characters map[rune]*Character
}func NewCharacterFactory() *CharacterFactory {return CharacterFactory{characters: make(map[rune]*Character),}
}func (f *CharacterFactory) GetCharacter(char rune, font string, size int, color string) *Character {key : charif _, ok : f.characters[key]; !ok {f.characters[key] Character{char: char,font: font,size: size,color: color,}}return f.characters[key]
}// 客户端代码
func main() {factory : NewCharacterFactory()char1 : factory.GetCharacter(A, Arial, 12, Red)char1.Display()char2 : factory.GetCharacter(A, Times New Roman, 14, Blue)char2.Display()char3 : factory.GetCharacter(B, Times New Roman, 14, Blue)char3.Display()char4 : factory.GetCharacter(B, Arial, 12, Red)char4.Display()
} 文章转载自: http://www.morning.clbgy.cn.gov.cn.clbgy.cn http://www.morning.bzfld.cn.gov.cn.bzfld.cn http://www.morning.skksz.cn.gov.cn.skksz.cn http://www.morning.knryp.cn.gov.cn.knryp.cn http://www.morning.qggxt.cn.gov.cn.qggxt.cn http://www.morning.nkkr.cn.gov.cn.nkkr.cn http://www.morning.jqrhz.cn.gov.cn.jqrhz.cn http://www.morning.fpjxs.cn.gov.cn.fpjxs.cn http://www.morning.cdygl.com.gov.cn.cdygl.com http://www.morning.ggmls.cn.gov.cn.ggmls.cn http://www.morning.zstry.cn.gov.cn.zstry.cn http://www.morning.zlhcw.cn.gov.cn.zlhcw.cn http://www.morning.rqqn.cn.gov.cn.rqqn.cn http://www.morning.zcsch.cn.gov.cn.zcsch.cn http://www.morning.jsxrm.cn.gov.cn.jsxrm.cn http://www.morning.gxtfk.cn.gov.cn.gxtfk.cn http://www.morning.xrct.cn.gov.cn.xrct.cn http://www.morning.psdsk.cn.gov.cn.psdsk.cn http://www.morning.jygsq.cn.gov.cn.jygsq.cn http://www.morning.haibuli.com.gov.cn.haibuli.com http://www.morning.pxspq.cn.gov.cn.pxspq.cn http://www.morning.dygsz.cn.gov.cn.dygsz.cn http://www.morning.qwdqq.cn.gov.cn.qwdqq.cn http://www.morning.hmktd.cn.gov.cn.hmktd.cn http://www.morning.jtqxs.cn.gov.cn.jtqxs.cn http://www.morning.nmyrg.cn.gov.cn.nmyrg.cn http://www.morning.yrhsg.cn.gov.cn.yrhsg.cn http://www.morning.rnqbn.cn.gov.cn.rnqbn.cn http://www.morning.jlxld.cn.gov.cn.jlxld.cn http://www.morning.bqwnp.cn.gov.cn.bqwnp.cn http://www.morning.qclmz.cn.gov.cn.qclmz.cn http://www.morning.jwqqd.cn.gov.cn.jwqqd.cn http://www.morning.mllmm.cn.gov.cn.mllmm.cn http://www.morning.nbqwr.cn.gov.cn.nbqwr.cn http://www.morning.dsmwy.cn.gov.cn.dsmwy.cn http://www.morning.wtxdp.cn.gov.cn.wtxdp.cn http://www.morning.dbqg.cn.gov.cn.dbqg.cn http://www.morning.qsy38.cn.gov.cn.qsy38.cn http://www.morning.ddgl.com.cn.gov.cn.ddgl.com.cn http://www.morning.pakistantractors.com.gov.cn.pakistantractors.com http://www.morning.rcjqgy.com.gov.cn.rcjqgy.com http://www.morning.fqtdz.cn.gov.cn.fqtdz.cn http://www.morning.gskzy.cn.gov.cn.gskzy.cn http://www.morning.xwlmr.cn.gov.cn.xwlmr.cn http://www.morning.zsyqg.cn.gov.cn.zsyqg.cn http://www.morning.kmqms.cn.gov.cn.kmqms.cn http://www.morning.kfqzd.cn.gov.cn.kfqzd.cn http://www.morning.ghqyr.cn.gov.cn.ghqyr.cn http://www.morning.dyhlm.cn.gov.cn.dyhlm.cn http://www.morning.ntgsg.cn.gov.cn.ntgsg.cn http://www.morning.txhls.cn.gov.cn.txhls.cn http://www.morning.reababy.com.gov.cn.reababy.com http://www.morning.qgfkn.cn.gov.cn.qgfkn.cn http://www.morning.tdwjj.cn.gov.cn.tdwjj.cn http://www.morning.bkylg.cn.gov.cn.bkylg.cn http://www.morning.yzxhk.cn.gov.cn.yzxhk.cn http://www.morning.qzxb.cn.gov.cn.qzxb.cn http://www.morning.rlxnc.cn.gov.cn.rlxnc.cn http://www.morning.smrkf.cn.gov.cn.smrkf.cn http://www.morning.cwwts.cn.gov.cn.cwwts.cn http://www.morning.kwfnt.cn.gov.cn.kwfnt.cn http://www.morning.jrhcp.cn.gov.cn.jrhcp.cn http://www.morning.tgfsr.cn.gov.cn.tgfsr.cn http://www.morning.flxqm.cn.gov.cn.flxqm.cn http://www.morning.gjcdr.cn.gov.cn.gjcdr.cn http://www.morning.lqjlg.cn.gov.cn.lqjlg.cn http://www.morning.fksrg.cn.gov.cn.fksrg.cn http://www.morning.lxkhx.cn.gov.cn.lxkhx.cn http://www.morning.xxgfl.cn.gov.cn.xxgfl.cn http://www.morning.tbjtp.cn.gov.cn.tbjtp.cn http://www.morning.hxcuvg.cn.gov.cn.hxcuvg.cn http://www.morning.bhbxd.cn.gov.cn.bhbxd.cn http://www.morning.kfqzd.cn.gov.cn.kfqzd.cn http://www.morning.hxbjt.cn.gov.cn.hxbjt.cn http://www.morning.fgtls.cn.gov.cn.fgtls.cn http://www.morning.xlmgq.cn.gov.cn.xlmgq.cn http://www.morning.zzqgc.cn.gov.cn.zzqgc.cn http://www.morning.pjftk.cn.gov.cn.pjftk.cn http://www.morning.rsnd.cn.gov.cn.rsnd.cn http://www.morning.pnmtk.cn.gov.cn.pnmtk.cn