1.工作区右下角的面板标签可以用来激活其中的面板,比如file面板2.关于图纸的设置在Design/document options里面,其中还有关于图纸栅格化和自动捕捉电气节点的设置3.比较常用的栅格化和电气节点的捕捉,可以通过在图纸上右击,Grids里面就行设置,Cycle snap grid ...
分类:
其他好文 时间:
2015-02-24 18:39:57
阅读次数:
125
如果你在进行release,retain相关操作的时候发现提示了这样一条错误。这是由于在新建工程的时候使用了ARC功能,即点选了“Use Automatic Reference Counting”选项。解决这个问题很简单:在老板的xcode中,打开“Build Setting”,找到“Objecti...
分类:
其他好文 时间:
2015-02-23 22:26:50
阅读次数:
190
微软近期Open的职位:Location: Beijing/SuzhouWant to work on a fast-cycle, high visibility, hardcore search team with ambitious goals? Internet search is one o...
分类:
其他好文 时间:
2015-02-17 07:03:40
阅读次数:
195
欢迎大家阅读参考,如有错误或疑问请留言纠正,谢谢
Linked List Cycle
Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
一开始使用了复杂度O(n^2)的方法,但是超时了,使用两个指...
分类:
其他好文 时间:
2015-02-16 11:43:26
阅读次数:
140
欢迎大家阅读参考,如有错误或疑问请留言纠正,谢谢Linked List Cycle IIGiven a linked list, return the node where the cycle begins. If there is no cycle, return null.Follow up:
Can you solve it without using extra space?扩展问题
在...
分类:
其他好文 时间:
2015-02-16 11:42:22
阅读次数:
175
1.问答题
一.readwrite,readonly,assign,retain,copy,nonatomic属性的作用.
二.什么时候用delegate,什么时候用Notification?
三.目标-动作机制
四.ViewController的 loadView, viewDidLoad, viewDidUnload 分别是在什么时候调用的?在自定义ViewController的时候这...
分类:
移动开发 时间:
2015-02-15 10:48:30
阅读次数:
220
A delta cycle is a VHDL construct used to makeVHDL, a concurrent language, executable on asequential computer.For RTL design, you can adopt some simpl...
分类:
其他好文 时间:
2015-02-12 12:21:29
阅读次数:
111
"Delta cycles are an HDL concept used to order events that occur in zero physical time."sigasi.comTaking the definition for Sigasi, what VHDL calls de...
分类:
其他好文 时间:
2015-02-12 10:34:24
阅读次数:
172
题目链接:http://acm.sgu.ru/problem.php?contest=0&problem=455Due to the slow 'mod' and 'div' operations with int64 type, all Delphi solutions for the probl...
分类:
编程语言 时间:
2015-02-11 21:48:03
阅读次数:
322
一、简介ARC是自iOS 5之后增加的新特性,完全消除了手动管理内存的烦琐,编译器会自动在适当的地方插入适当的retain、release、autorelease语句。你不再需要担心内存管理,因为编译器为你处理了一切注意:ARC 是编译器特性,而不是 iOS 运行时特性(除了weak指针系统),它也...
分类:
其他好文 时间:
2015-02-11 16:02:01
阅读次数:
215