@implementation@synthesis age; // 就等于@synthesis age
= age 得到同名的instance variable age 和-setAge, -age
这两个accessor.@end如果@implementation// no @synthesi.....
分类:
其他好文 时间:
2014-05-26 22:22:32
阅读次数:
237
《基础篇》
http://www.cnblogs.com/lhb25/archive/2013/01/10/talks-to-help-you-become-a-better-front-end-engineer-a.html《CSS篇》
http://www.cnblogs.com/lhb25/a...
分类:
其他好文 时间:
2014-05-26 21:58:08
阅读次数:
257
(一) 判断二进制末尾 ff.seekg(0,ios::end) ; 可以找到末尾,但是那里没有内容。
我们用 int END =ff.seekg(0,ios::end) ; 记录这个位置 。 然后 pos = ff.tellg(); if(pos == END)
break ; 这样就避免读到非法...
分类:
其他好文 时间:
2014-05-26 12:19:37
阅读次数:
244
基本上一次过,要注意边界条件的问题:如果在recursion里有两个参数int begin, end,
递归写作recursion(num, mid+1, end), 因为+号的原因,递归中是会出现begin > end
的情况的,所以考虑初始条件的时候应该要考虑充分。 1 /** 2 * Def....
分类:
其他好文 时间:
2014-05-26 12:12:49
阅读次数:
257
Given a linked list, remove the nth node from
the end of list and return its head. For example, Given linked list:
1->2->3->4->5, and n = 2. After rem...
分类:
其他好文 时间:
2014-05-26 09:08:23
阅读次数:
262
Session Options -- Terminal -- EmulationTerminal 选择
Linux OK来自为知笔记(Wiz)
分类:
其他好文 时间:
2014-05-26 08:20:03
阅读次数:
456
题目说:Try to do this in one pass
只用一遍遍历的话,p1先走n节点,p2再走,等到p1到达链表尾的时候p2正好在倒数第n+1个上面鸟
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode...
分类:
其他好文 时间:
2014-05-23 01:52:29
阅读次数:
331
jQuery总clone的用法,顺便讲解了end的用法...
分类:
Web程序 时间:
2014-05-22 23:33:34
阅读次数:
351
在DAG中DFS中顶点的出栈顺序即逆拓扑序。
def topological_sort( graph ):
is_visit = dict( ( node, False ) for node in graph )
li = []
def dfs( graph, start_node ):
for end_node in...
分类:
编程语言 时间:
2014-05-22 23:12:10
阅读次数:
487
最近发现一个奇怪的现象,数据库报告上看负载很高,但是cpu和等待事件都很低,不知道消耗的资源跑到哪里去了?
Snap Id
Snap Time
Sessions
Cursors/Session
Begin Snap:
5073
17-5月 -14 04:00:20
127
78.8
End Snap:
...
分类:
其他好文 时间:
2014-05-22 16:58:21
阅读次数:
281