码迷,mamicode.com
首页 >  
搜索关键字:pattern    ( 7665个结果
[笔记]工作相关
1、最近编写了几个工厂需要的test pattern,用于UHD120和UHD60的pannel上,其中UHD120需要做半分屏处理,存储一行。2、最近写了UHD120/60/30缩放到FHD120/60/30的算法,采用的算法是双线性算法,相邻4点取平均得到的。需要进行行的存储。注意DPRAM的使...
分类:其他好文   时间:2014-05-27 00:17:14    阅读次数:256
[Scala] Pattern Matching(模式匹配)
Scala中的match, 比起以往使用的switch-case有著更強大的功能, 1. 傳統方法 def toYesOrNo(choice: Int): String = choice match { case 1 => "yes" case 0 => "no" case _ => "error"...
分类:其他好文   时间:2014-05-26 20:45:46    阅读次数:285
PHP设计模式之单例模式
单例模式(Singleton pattern)是一种创建型模式,它会限制应用程序,使其只能创建某个类类型的单一实例。举例来说,一个Web站点将会需要一个数据库连接对象,但是应该有且只有一个,因此我们需要使用单例模式来实现。eg:_settings[$index] = $value; } f...
分类:Web程序   时间:2014-05-26 06:20:06    阅读次数:319
【大话设计模式】——简单工厂模式
简单工厂模式(Simple Factory Pattern)属于创建型模式,又叫做静态工厂方法模式(Static FactoryMethod Pattern),但是不属于23GOF设计模式之一。简单工厂模式是由一个工厂对象决定创建出哪一种产品类的实例。 走别人的的路,不如自己 to do (不如的意思是更)。先敲书上的例子,第一遍也许不懂,第二遍就清晰很多,第三遍就觉得自己能写点东西出来。不要总是觉得自己看不懂,学不好,只有先学了才能更好。没有之前的8个馒头,就没有第9个馒头的饱(好撑啊~~)...
分类:其他好文   时间:2014-05-26 05:51:44    阅读次数:224
设计模式 - 装饰者模式(Decorator Pattern) Java的IO类 使用方法
装饰者模式(Decorator Pattern) Java的IO类 使用方法 本文地址: http://blog.csdn.net/caroline_wendy/article/details/26716823 装饰者模式(decorator pattern)参见: http://blog.csdn.net/caroline_wendy/article/details/2670...
分类:编程语言   时间:2014-05-25 00:55:05    阅读次数:346
设计模式 - 装饰者模式(Decorator Pattern) 详解
装饰者模式(Decorator Pattern) 详解 本文地址: http://blog.csdn.net/caroline_wendy 装饰者模式(Decorator Pattern): 动态地将责任附加到对象上. 若要扩展功能, 装饰者提供了比继承更有弹性的替代方案. 使用方法: 1. 首先创建组件(Component)父类, 所有类, 具体组件(...
分类:其他好文   时间:2014-05-24 20:45:41    阅读次数:317
设计模式 - 策略模式(Strategy Pattern) 详解
策略模式(Strategy Pattern) 详解 本文地址: http://blog.csdn.net/caroline_wendy/article/details/26577879 本文版权所有, 禁止转载, 如有需要, 请站内联系. 策略模式: 定义了算法族, 分别封装起来, 让它们之间可以相互替换, 此模式让算法的变化独立于使用算法的客户. 对于父类的子类族需要经常扩展新的功能, 为了使用父类比较灵...
分类:其他好文   时间:2014-05-23 02:35:13    阅读次数:341
LeetCode: Wildcard Matching [043]
【题目】 Implement wildcard pattern matching with support for '?' and '*'. '?' Matches any single character. '*' Matches any sequence of characters (including the empty sequence). The matching should cover the entire input string (not partial). The functi...
分类:其他好文   时间:2014-05-23 00:17:12    阅读次数:364
JavaScript Patterns 2.6 switch Pattern
This post introduces the principle of the use of switch-pattern.
分类:编程语言   时间:2014-05-22 16:15:39    阅读次数:280
yarn 集群部署,遇到的问题小结
1. Application Master 无法访问     点击application mater 链接,出现 http 500 错误,java.lang.Connect.exception:     问题是由于设定web ui时,50030 端口对应的ip地址为0.0.0.0,导致application master 链接无法定位。 解决办法:...
分类:其他好文   时间:2014-05-21 13:58:49    阅读次数:323
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!