原文http://blog.sina.com.cn/s/blog_6b8c3d7a01018803.html一,引入jsonkit NSString *str
= nil; //字符串 NSMutableString *string = [[NSMutableString allo...
分类:
Web程序 时间:
2014-05-12 17:28:46
阅读次数:
304
问题描述最近在用LINQ to Entities,看看下面的代码//获取分页数据 var
admins = from aa in db.VAccountAdmins select aa; //处理过滤规则 if (null !=
filterRules) ...
分类:
其他好文 时间:
2014-05-12 16:40:23
阅读次数:
306
这个是缩进问题,重新将行前面的空格删掉,换位tab
分类:
编程语言 时间:
2014-05-12 16:35:23
阅读次数:
383
我猜~~~很多一开始学习python的同学们一定也遇到了这个问题,在安装setuptools时候会遇到UnicodeDecodeError的错误。我学的是3.x,但是周围的人都说2.7好,╮(╯▽╰)╭一开始我也不在乎,但是工作需要使用mongodb,但是它的包暂时只有2.7,我点点点点。无奈我也就...
分类:
编程语言 时间:
2014-05-02 16:24:03
阅读次数:
410
模式切换的命令:键 进入模式 说明 命令模式 (从编辑模式返回命令模式)按 i,a, o
“插入” 编辑模式 (在当前光标前开始插入)i :在光标前插入 I 光标所在行的行首开始插入a:在光标后开始插入
A:在本行末开始插入o:在光标所在行下另起一行插入 O:在光标上插入新行在命令模式下不要按其它键...
分类:
其他好文 时间:
2014-05-02 16:17:28
阅读次数:
253
源地址:http://unity3d.9tech.cn/news/2014/0402/40149.html在游戏设计过程中定时器是必不可少的工具,我们知道update方法是MonoBehavior中一个人人皆知的定时器方法,每帧都在调用,那还有其他什么定时器的方法呢,这里介绍一下。1.Invoke(...
分类:
其他好文 时间:
2014-05-02 15:27:43
阅读次数:
438
public class cal{public static void main(String[]
args){calculator ca=new calculator();byte[] first=new byte[4];byte[] second=new
byte[4];System.out.p...
分类:
其他好文 时间:
2014-05-02 15:23:23
阅读次数:
395
A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDEDCBA" is a palindrome because it is the same when the string is read from lef...
分类:
其他好文 时间:
2014-05-02 10:33:09
阅读次数:
332
在C语言某个程序当中需要把文本16进制转换成对应的16进制数,比如字符串"0x1a"转换成10进制的26,可以用以下函数来实现相关函数: atof, atoi,
atol, strtod, strtoul表头文件: #include 定义函数: long int strtol(const char ...
分类:
编程语言 时间:
2014-05-02 09:58:29
阅读次数:
290
许多次通过,主要是没有考虑到这种情况:“A C ”结尾有多重空格的情况。 1 public class
Solution { 2 public int lengthOfLastWord(String s) { 3 int j, k; 4 if(s == nu...
分类:
其他好文 时间:
2014-05-02 08:21:00
阅读次数:
300