摘要: 在一口一个设计模式--观察者模式中。我们已经知道怎样应用观察者模式,但通过近期的深入学习,发现观察者模式存在下面缺陷: 1.抽象通知者依赖于抽象观察者; 2.每一个详细观察者被调用的方法必须一致。 比方在机房收费系统中关于观察者模式的应用例如以下图所看到的: 这个设计存在下面问题: 1.抽象通知者须 阅读全文
posted @ 2017-04-14 12:21 yutingliuyl 阅读(187) 评论(0) 推荐(0) 编辑
摘要: NSString *color = model.display_color; long colorLong = strtoul([color cStringUsingEncoding:NSUTF8StringEncoding], 0, 16); // 通过位与方法获取三色值 int R = (col 阅读全文
posted @ 2017-04-14 11:55 yutingliuyl 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 聚集指的是,基于一个输入和特定程序来计算结果的数据操纵操作的广泛类别。 MongoDB提供了大量在结果集上运行特定聚集操作的聚集操作方法。 尽量在使用范围上有限制,特别是和聚集管道、map-reduce相比較,但这些操作。为常规的数据处理提供了直接的语义。 Count MongoDB能够返回符合一个 阅读全文
posted @ 2017-04-14 11:29 yutingliuyl 阅读(149) 评论(0) 推荐(0) 编辑
摘要: Errno能帮我们找到系统函数的错误信息。比方open函数,假设正常返回时,其返回值是一个非负的整数。异常时会返回-1。同一时候该系统函数会设置errno的值。让我们能够了解错误的原因。 Errno的正确使用方法是,首先要明白系统函数调用异常(比方返回-1或NULL)。然后再去推断errno的值。我 阅读全文
posted @ 2017-04-14 10:45 yutingliuyl 阅读(134) 评论(0) 推荐(0) 编辑
摘要: Android上开源的酷炫的交互动画和视觉效果:http://blog.csdn.net/u013278099/article/details/50323689 Awesome-android-ui:https://github.com/wasabeef/awesome-android-ui And 阅读全文
posted @ 2017-04-14 10:37 yutingliuyl 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 这几天搞《材料採购系统》需求。我们组须要分模块画模型图,可是假设每一个人各自画各自的,最后整合,这样就太麻烦了。小左说Axure能够实现多人协作,于是我就研究了一下。我们组已经在用了。以下分享一下。 前提:安装SVNserver,安装Axure(我使用的是Axure6.5) 一,SVN中创享项目 1 阅读全文
posted @ 2017-04-14 10:36 yutingliuyl 阅读(726) 评论(0) 推荐(0) 编辑
摘要: 对于数字n(大于1)。从1到n有多少种binary search tree(BST序列)?当n=3时,BST序列为: 1 3 3 2 1 \ / / / \ \ 3 2 1 1 3 2 / / \ \ 2 1 2 3共5种。分析:N=1时,BST 序列为 1 / \ null null1种N=2时, 阅读全文
posted @ 2017-04-14 09:56 yutingliuyl 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 问题 方法的思想 The idea is to check elements in a way that’s reminiscent of movements of a caterpillar. The caterpillar crawls through the array. We remembe 阅读全文
posted @ 2017-04-14 09:05 yutingliuyl 阅读(469) 评论(0) 推荐(0) 编辑
摘要: 在讲它们之间的通信之前,我们先以MediaServer为例看看普通Server进程都在干些什么。 int main() { …… // 获得ProcessState实例 sp<ProcessState> proc(ProcessState::self()); // 得到ServiceManager的 阅读全文
posted @ 2017-04-14 08:42 yutingliuyl 阅读(335) 评论(0) 推荐(0) 编辑
摘要: China-pub 比較给力,如今都6折封顶 X上的商品从一月前的188元直接涨到268元 这是什么节奏 China-pub 比較给力,如今都6折封顶 X上的商品从一月前的188元直接涨到268元 这是什么节奏 阅读全文
posted @ 2017-04-14 08:03 yutingliuyl 阅读(88) 评论(0) 推荐(0) 编辑