Mine NumberTime Limit: 1000ms Memory limit:
65536K有疑问?点这里^_^题目描述Every one once played the game called Mine Sweeping, here I
change the rule. You are g...
分类:
其他好文 时间:
2014-04-30 01:05:41
阅读次数:
857
在WEB网站开发过程中,如果我们将数据库连接字符串封装到.DLL文件中,将会给数据库和程序的迁移带来麻烦,因为万一服务器地址或者数据库发生变更,那么我们就不得不修改源程序并重新将其编译。更好的解决方法是将数据库连接字符串写入到web.config配置文件中,可问题是将连接字符串写入到web.conf...
分类:
Web程序 时间:
2014-04-30 01:01:34
阅读次数:
638
1、查看当前Python版本python -V2、查看当前CentOS版本cat
/etc/redhat-release3、安装所有的开发工具包yum groupinstall "Development tools"4、安装其他必须包yum
install zlib-devel bzip2-deve...
分类:
编程语言 时间:
2014-04-30 00:59:31
阅读次数:
443
1. 安装openglessudo apt-get install
libgles-mesa-dev2. 安装glew
1.9下载codehttp://sourceforge.net/projects/glew/files/glew/makesudo make install3.
安装freetyp...
分类:
其他好文 时间:
2014-04-30 00:58:28
阅读次数:
506
今天用xcode5.1设置xib中,用静态的方式设置UITableViewController中的tableview,把tableview中的backgroundColor改变后,xib上有效果,但是一运行就变成了透明色,在过渡动画时,都可以看到背面的view!见下面截图后来在viewdidload...
分类:
移动开发 时间:
2014-04-30 00:57:28
阅读次数:
757
NSMutableString*mutableStr =
[[NSMutableStringalloc]initWithFormat:@"蓝鸥科技有限公司"];NSMutableString*mutableStr1 =
[NSMutableStringstringWithFormat:@"蓝鸥科技有...
分类:
其他好文 时间:
2014-04-30 00:54:21
阅读次数:
331
//1.创建一个数组对象 int、float、char等等C语言的类型无法直接放到OC的数组里面
NSMutableArray*array = [NSMutableArrayarrayWithObjects:@"1",@"2",nil];
//2.使用NSNumber对NSInte...
分类:
其他好文 时间:
2014-04-30 00:53:19
阅读次数:
519
//使用实例方法创建NSSting的对象 NSString*string1 =
[[NSStringalloc]initWithFormat:@"姓名:%@",@"hfjs"]; NSString*string2 =
[[NSStringalloc] initWithFormat:@"姓名"...
分类:
其他好文 时间:
2014-04-30 00:51:16
阅读次数:
553
如果Hbase的时间没有同步,启动主节点会起来,子节点的regionServer就不会起来。错误日志如下:aused by:
org.apache.hadoop.hbase.ipc.RemoteWithExtrasException(org.apache.hadoop.hbase.ClockOutO...
分类:
其他好文 时间:
2014-04-30 00:50:16
阅读次数:
565
//创建指定元素个数的一个集合对象 NSMutableSet*set =
[NSMutableSetsetWithCapacity:10]; //添加一个对象到集合 [setaddObject:@"adsf"];
NSLog(@"%@", set); //从集合中删除一个对象 ...
分类:
其他好文 时间:
2014-04-30 00:48:12
阅读次数:
537