iOS Programming Recipe 6: Creating a custom
UIView using a NibJANUARY 7, 2013BYMIKETT12 COMMENTSCreating a custom UIView
using a NibAssumptionsYou are...
分类:
移动开发 时间:
2014-07-22 23:07:15
阅读次数:
651
JavaScript中的两个等号(==)和三个等号(===):Determining whether
two variables are equivalent is one of the most important operations in
programming.
分类:
编程语言 时间:
2014-05-09 11:44:17
阅读次数:
579
联合体union
当多个数据需要共享内存或者多个数据每次只取其一时,可以利用联合体(union)。在C Programming Language 一书中对于联合体是这么描述的:
1)联合体是一个结构; 2)它的所有成员相对于基地址的偏移量都为0; 3)此结构空间要大到足够容纳最"宽"的成员;4)其对...
分类:
编程语言 时间:
2014-05-09 11:25:55
阅读次数:
409
1.把C++当成一门新的语言学习(和C没啥关系!真的。); 2.看《Thinking In
C++》,不要看《C++变成死相》; 3.看《The C++ Programming Language》和《Inside The C++ Object
Model》,不要因为他们很难而我们自己是初学者所以就不...
分类:
编程语言 时间:
2014-05-05 23:56:01
阅读次数:
480
主要功能:实现 网页离线加载。基本思想来源于AFCache。作者是Rob
Napier(IOSX Programming的作者)。使用方法:To build, you will need the Reachability code
from Apple (included). That requir...
分类:
其他好文 时间:
2014-05-04 20:32:05
阅读次数:
1699
using wait and notify directly is like
programming in "concurrency assembly language," as compared to the higher-level
language provided by java.util....
分类:
编程语言 时间:
2014-05-04 11:04:34
阅读次数:
401
一、简介AOP(Aspect-Oriented
Programming,即面向切面程序设计),提供了另外一种有关程序结构的思维方式,是OOP(面向对象程序设计)的补充。OOP的模块化单元是类,AOP的模块化单元是切面。切面可以模块化横切多个类或者对象的关注点,比如事务管理,这些关注点在AOP的词汇里...
分类:
编程语言 时间:
2014-04-30 16:00:00
阅读次数:
429
http://www.thegeekstuff.com/2010/07/perl-tcp-udp-socket-programming/In this
article, let us discuss how to write Perl socket programming using the inb...
分类:
Web程序 时间:
2014-04-27 23:22:09
阅读次数:
679
【一些编程语录】1、If debugging is the process of
removing software bugs, then programming must be the process of putting them
in.– Edsger Dijkstra 如果调试程序是移除臭....
分类:
其他好文 时间:
2014-04-27 22:56:14
阅读次数:
543