public class CookiesUtils{ public static void
SetCookie(String key, String value) { SetCookie(key, value, null, null, null,
false); } ...
分类:
其他好文 时间:
2014-07-22 23:16:34
阅读次数:
339
Table Existence of index A table should contain at
least one column, one index, one key, and one reference.可以不检查 Existence of index
这项,也就没有这个警告错误了。这是说...
分类:
其他好文 时间:
2014-07-22 23:16:13
阅读次数:
2085
http://blog.csdn.net/iicy266/article/details/11906189这篇文章很好,提醒我们熟悉函数原型的重要性
分类:
其他好文 时间:
2014-07-22 23:15:36
阅读次数:
283
一、简介REmoteDIctionaryServer(Redis),redis是一个基于内存的单机key/value系统,类似memcached,但支持value为多种形式,包括:字符串(string)、链表(list)、集合(set)、有序集合(sortedset)和hashtable二、特点1优...
分类:
其他好文 时间:
2014-07-22 23:14:34
阅读次数:
462
11. double 数值的整数次方note:
浮点数表示时有误差,判等时必须自己根据精度要求实现。#include #include using namespace std;bool
equal(double num1, double num2) // key 1{ if(num1 - num2 ...
分类:
其他好文 时间:
2014-07-22 23:11:56
阅读次数:
436
2014-04-29 13:19:09先贴出打开远程(Linux)目录所需的配置文件{ //
The tab key will cycle through the settings when first created // Visit
http://wbond.net/sublime_...
分类:
其他好文 时间:
2014-04-30 20:49:48
阅读次数:
657
1、环境说明: (Gentoo Linux环境) # uname -aLinux Crob
2.6.34-gentoo #1 SMP Mon May 31 15:45:25 CST 2010 x86_64 Intel(R) Core(TM)2 Duo
CPU E7500 @ 2.93GHz Genu...
分类:
其他好文 时间:
2014-04-30 16:53:08
阅读次数:
518
一、安装zabbix-agentrpm -ivh
http://repo.zabbix.com/zabbix/2.2/rhel/5/x86_64/zabbix-release-2.2-1.el5.noarch.rpm/usr/bin/yum
-y install zabbix-server-mysq...
分类:
数据库 时间:
2014-04-30 14:16:55
阅读次数:
639
使用字典的坏处一般情况下,设置数据和取出数据都使用“字符串类型的key”,编写这些key时,编译器不会有任何友善提示,需要手敲dict[@"name"] =
@"Jack";NSString *name = dict[@"name"];手敲字符串key,key容易写错Key如果写错了,编译器不会有任...
分类:
移动开发 时间:
2014-04-29 17:21:47
阅读次数:
525
NSUserDefaults的使用一、NSUserDefaults的简单介绍
用户轻量级的数据持久化,主要用于保存用户程序的配置等信息,以便下次启动程序后能恢复上次的设置。该数据实际上是以“键值对”形式保存的(类似于NSDictionary—),因此我们需要通过key来读取或者保存数据。二、NSU....
分类:
其他好文 时间:
2014-04-29 16:32:47
阅读次数:
369