待修正 “A timing exception is needed when the logic behaves in a way that is not timed correctly by default.” 前面谈时序约束的时候,略去了Path specific exceptions。'Pat...
分类:
其他好文 时间:
2015-08-14 13:24:34
阅读次数:
196
PCB电路板元器件布局的一般原则: 设计人员在PCB电路板布局过程中需要遵循的一般原则如下。 (1)元器件最好单面放置。如果需要双面放置元器件,在底层(Bottom Layer)放置插针式元器件, )元器件最好单面放置。 就有可能造成电路板不易安放,也不利于焊接,所以在底层(Bott...
分类:
其他好文 时间:
2015-08-14 13:25:52
阅读次数:
97
Will It Stop?Available memory: 64 MB. Byteasar was wandering around the library of the University of Warsaw and at one of its facades he noticed a pie...
分类:
其他好文 时间:
2015-08-14 13:25:13
阅读次数:
128
当需要描述多个对象之间的互动,可以考虑使用序列图。 在建模项目下添加一个名称为"Basic Flow"的序列图。 比如描述客户是如何在MVC下获取到视图信息的。 备注: ● 通常是从用户的角度开始时序图的● 把粒度控制在必要的环节 参考资料:https://channel9.msdn.com/Blo...
分类:
其他好文 时间:
2015-08-14 13:22:52
阅读次数:
185
题意:整数大数加法思路:大数模板#include#include#include#includeusing namespace std;#define MAXN 9999//万进制#define DLEN 4//4位class BigNum{private: int a[500];//可以控制...
分类:
其他好文 时间:
2015-08-14 13:23:38
阅读次数:
126
Flyweight 享元模式(结构型模式)面向对象的代价面向对象很好的解决了系统抽象性的问题,同时在大多数情况下也不会损及系统的性能。但是,在某些特殊应用中,由于对象的数量太大,采用面向对象会给系统带来难以承受的内存开销。比如图形应用中的图元等对象、字处理应用中的字符对象等。动机(Motivatio...
分类:
其他好文 时间:
2015-08-14 13:23:10
阅读次数:
135
1.引言 先看一个STL中for_each的用法: 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 class Test 8 { 9 public:10 Test(in...
分类:
其他好文 时间:
2015-08-14 13:22:10
阅读次数:
123
网上的资源感觉还是有些用,可以看看,帮助理解,ECshop模板机制整理原文:http://blog.sina.com.cn/s/blog_6900af430100nkn8.html数据处理: ECshop根目录下及admin目录下的文件是对应前台、后台页面的数据处理页,在这些文件中对页面所要展示的....
分类:
其他好文 时间:
2015-08-14 13:22:56
阅读次数:
271
参考文章:http://www.ruanyifeng.com/blog/2014/06/git_remote.htmlgit基础操作 http://www.ruanyifeng.com/blog/2012/07/git.html git分支管理 http://mp.weixin....
分类:
其他好文 时间:
2015-08-14 13:22:45
阅读次数:
129
pom.xml文件配置详解--声明规范 4.0.0 --基础设置 ... ... 1.0-SNAPSHOT jar --更多项目信息 ... ... A mavenp roject ... --许可列表 Apache2 http://www.baid...
分类:
其他好文 时间:
2015-08-14 13:22:46
阅读次数:
113
1.问题未使用泛型时,元素的类型不安全;操作麻烦,可能需要强制转换import java.util.ArrayList;import java.util.List;import org.junit.Test;import day8.Customer;public class GenericTest ...
分类:
其他好文 时间:
2015-08-14 13:21:41
阅读次数:
146
每个数字对应多个字符,给定一个数字串,给出所有与这个数字串对应的字符串。一、使用递归的方式最容易想到了 1 import java.util.*; 2 3 public class Solution { 4 void backtree(String digits,int index,Str...
分类:
其他好文 时间:
2015-08-14 13:20:13
阅读次数:
106
Ctrl+1 快速修复Ctrl+D: 删除当前行Ctrl+Alt+↓ 复制当前行到下一行(复制增加)Ctrl+Alt+↑ 复制当前行到上一行(复制增加)Alt+↓ 当...
分类:
其他好文 时间:
2015-08-14 13:22:31
阅读次数:
116
Design T-ShirtTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Problem DescriptionSoon after he decided to design a T-sh...
分类:
其他好文 时间:
2015-08-14 13:18:58
阅读次数:
103
由于stagefright和openmax运行在两个不同的进程上,所以他们之间的通讯要经过Binder进行处理,本小结不考虑音频这一块,假设视频为MP4封装的AVC编码文件.先简单的看一下stagefright是怎么工作的, stagefright使用event来进行驱动,event调度器和even...
分类:
其他好文 时间:
2015-08-14 13:19:09
阅读次数:
241
四、NSDictionary和NSMutableDictionary1、不可变字典NSDictionary//字典的创建NSArray *array1 = [NSArray arrayWithObjects:@”zhangsan”,@”zhangfei”,nil];NSArray *array2 =...
分类:
其他好文 时间:
2015-08-14 13:18:05
阅读次数:
119