码迷,mamicode.com
首页 >  
搜索关键字:nil null    ( 36455个结果
C# ?(问号)的三个用处
public DateTime? StatusDateTime = null;脑子便也出现个问号,这是什么意思呢?网上搜下,总结如下:1. 可空类型修饰符(?):引用类型可以使用空引用表示一个不存在的值,而值类型通常不能表示为空。例如:string str=null; 是正确的,int i=null...
分类:其他好文   时间:2014-04-30 20:16:58    阅读次数:474
让提示界面始终保持在页面的最前端(页面置顶)
UIView *parentView = nil; NSArray* windows = [UIApplication sharedApplication].windows; UIView* window = [windows objectAtIndex:0]; ...
分类:其他好文   时间:2014-04-29 19:09:34    阅读次数:994
null 与 undefined
JavaScript 中一共有 5 种基本类型,分别是 String、Number、Boolean、Null 和 Undefined 。前 3 种都比较好理解,后面两种就稍微复杂一点。 Null 类型只有一个值,就是 null ; Undefined 类型也只有一个值,即 undefined 。 n...
分类:其他好文   时间:2014-04-29 11:43:47    阅读次数:484
字典value为数组
1.添加元素的时候,先取出数组,再向数组中添加元素:- (void)addPeason:(AddressPeason*)peason{ if(![[peasongetName]isEqualToString:nil]) { for(NSString*stringin[_peasonDiction.....
分类:其他好文   时间:2014-04-29 11:22:45    阅读次数:535
从ffmpeg filter里出来的数据直接送给avcodec_encode_audio2编码,写文件有错。
http://hi.baidu.com/mingyuejingque/item/78e71aff57ae9ec5a835a2e4感谢mingyuejingquest = avformat_new_stream( m_oc, NULL); if (!st) { fprintf(stderr, ...
分类:其他好文   时间:2014-04-29 10:41:46    阅读次数:441
undefined与null的区别
大多数计算机语言,有且仅有一个表示"无"的值,比如,C语言的NULL,Java语言的null,Python语言的None,Ruby语言的nil。有点奇怪的是,JavaScript语言居然有两个表示"无"的值:undefined和null。这是为什么?一、相似性在JavaScript中,将一个变量赋值...
分类:其他好文   时间:2014-04-29 10:32:46    阅读次数:404
IOS 使用dispatch_once 创建单例
+ (instantClass *)sharedClient {static instantClass *_sharedClient = nil;static dispatch_once_t onceToken;dispatch_once(&onceToken, ^{_sharedClient = ...
分类:移动开发   时间:2014-04-29 10:27:47    阅读次数:419
md5 对字符串进行加密的方法 简单好用
1 public static String makeMD5(String password) { 2 String result = null; 3 4 MessageDigest messageDigest; 5 try { 6 ...
分类:其他好文   时间:2014-04-29 10:16:46    阅读次数:348
GetMessage的第二个参数
疑问为什么GetMessage的第二个参数制定为hwnd后,应用程序无法退出?解释MSDN中指出:当第二个参数为NULL时,GetMessage取得那些属于调用线程的窗口的消息和通过PostThreadMessage函数投递到调用线程的线程消息。GetMessage需要检索到WM_QUIT返回一个F...
分类:其他好文   时间:2014-04-29 10:12:47    阅读次数:673
IOS 定位 单例
+ (SCLocationController *)sharedController{ static SCLocationController *sharedController = nil; static dispatch_once_t onceToken; dispatc...
分类:移动开发   时间:2014-04-29 10:12:46    阅读次数:534
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!