private static readonly String[][] s_HTTPStatusDescriptions = new String[][] { null, new String[] { ...
分类:
Web程序 时间:
2015-06-26 17:46:04
阅读次数:
134
@property(nonatomic,readonly) UIView *superview;获得自己的父控件对象@property(nonatomic,readonly,copy) NSArray *subviews;获得自己的所有子控件对象@property(nonatomic) NSInte...
分类:
其他好文 时间:
2015-06-23 13:28:58
阅读次数:
83
1. 如何保证线程安全在C#中可以使用static,readonly两个关键字保证单件的线程安全.static关键字修饰的静态成员在程序运行时由 .NET Framework 公共语言运行库 (CLR) 自动加载管理,这些成员是密封的,全局的,且不能被实例化。诸如此类的特点,让C#中的单件实现更加方...
分类:
其他好文 时间:
2015-06-23 11:38:16
阅读次数:
83
copy:建立一个索引计数为1的对象,然后释放旧对象 对NSString对NSString 它指出,在赋值时使用传入值的一份拷贝。拷贝工作由copy方法执行,此属性只对那些实行了NSCopying协议的对象类型有效。更深入的讨论,请参考“复制”部分。retain:释放旧的对象,将旧对象的值赋予输入对...
分类:
其他好文 时间:
2015-06-22 20:34:34
阅读次数:
111
#region 1.0 单例类的写法 private static readonly MessageMgr _instance; static MessageMgr() { _instance = new MessageMgr(); } pri...
分类:
其他好文 时间:
2015-06-22 14:50:31
阅读次数:
101
从效果上看源码 1 2 3 4 5 6 7 8 9 10 disabled与readonly的区别11 12 disabled13 ...
分类:
其他好文 时间:
2015-06-21 01:58:55
阅读次数:
90
工作之余,整理了一下,Visual Studio 里面的快速生产代码缩写集合,这个拿出来分享想一下,希望对您有所帮助。文件下载地址:VS内置生产代码缩写集合文档.rar 首字母简写生成代码aattachedPropertypublic static readonly ??? propertyNa.....
分类:
其他好文 时间:
2015-06-19 15:05:34
阅读次数:
124
老赵写的文章,原文:http://blog.zhaojie.me/2009/09/i-made-a-mistake-can-you-figure-it-out-answer.htmlpublic static class MyClass{ public static readonly Guid...
分类:
其他好文 时间:
2015-06-19 14:58:57
阅读次数:
142
有时候,我们希望表单中的文本框是只读的,让用户不能修改其中的信息,如使 的内容,"中国"两个字不可以修改。实现的方式归纳一下,有如下几种。方法1: onfocus=this.blur() 方法2:readonly 方法3: disabled
分类:
编程语言 时间:
2015-06-18 14:51:32
阅读次数:
121
C# WinForm 上传多文件和数据public static class HttpHelper { private static readonly Encoding DEFAULTENCODE = Encoding.UTF8; /// /// H...