码迷,mamicode.com
首页 >  
搜索关键字:blog    ( 264251个结果
4 Sum leetcode java
题目:Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array w...
分类:编程语言   时间:2014-07-22 22:41:14    阅读次数:396
这是什么垃圾代码
#region Helper public virtual void SerializeTo(ref Uri url, object queryJson) { if (queryJson != null) { ...
分类:其他好文   时间:2014-07-22 22:41:14    阅读次数:221
[cb]NGUI事件管理
看了许多的文章都有讲到关于NGUI的事件管理,许多人的做法的是封装一个事件处理层,避免在每个UI控件上都绑定事件处理脚本。我们项目的做法是:在每一个需要进行事件处理的控件上绑定UIEventListener脚本 然后每一个UI采用一个Scene,每一个UI对应一个CUI的Class 比如:cb-Ar...
分类:其他好文   时间:2014-07-22 22:41:14    阅读次数:248
python 简单的文件下载
需要使用urllib2库import urllib2def download(url, szFileName = ""): #szFileName:下载文件到的目标路径 if szFileName == "": szFileName = url[url.rfind('/') + ...
分类:编程语言   时间:2014-07-22 22:41:13    阅读次数:249
让UserControl能显示焦点状态
'set the control can display the focus status Protected Overrides Sub OnGotFocus(ByVal e As System.EventArgs) MyBase.OnGotFocus(e) M...
分类:其他好文   时间:2014-07-22 22:41:13    阅读次数:198
Android学习笔记三:Intent实现页面跳转
在主Activity的OnCreate()方法中,通过findViewById得到Activiity_main中已定义的组件,例如Button、EditText等,注意需要强制转型view到具体的类型。给取得的组件btn添加监听器如OnClickListener(),在其中实例化Intent对象,参...
分类:移动开发   时间:2014-07-22 22:40:55    阅读次数:264
Binder机制1---Binder原理介绍
1.Binder通信机制介绍这篇文章会先对照Binder机制与Linux的通信机制的区别,了解为什么Android会另起炉灶,採用Binder。接着,会依据Binder的机制,去理解什么是Service Manager,在C/S模型中扮演什么角色。最后,会从一次完整的通信活动中,去理解Binder通...
分类:其他好文   时间:2014-07-22 22:40:55    阅读次数:299
NOIP2010 题解
机器翻译 题解:模拟 1 #include 2 #include 3 4 const int MAXN = 1000; 5 6 int n, m, cj, now, MinV, MinId, Pri, a[MAXN+10], in[MAXN+10]; 7 8 int main(){ 9 ...
分类:其他好文   时间:2014-07-22 22:40:55    阅读次数:185
04---动态改变Cell的高度
动态改变Cell的高度1.利用tableView代理方法的返回值决定每一行cell的高度- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath2.UIFont// 返...
分类:其他好文   时间:2014-07-22 22:40:54    阅读次数:252
去掉a标签的下划线
标签的伪类样式一组专门的预定义的类称为伪类,主要用来处理超链接的状态。超链接文字的状态可以通过伪类选择符+样式规则来控制。伪类选择符包括:总: a 表示所有状态下的连接 如 a{color:red}① a:link:未访问链接 ,如 a:link {color:blue}② a:visited:已访...
分类:其他好文   时间:2014-07-22 22:40:54    阅读次数:178
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!