//实例化一个NSDateFormatter对象NSDateFormatter*dateFormatter = [[NSDateFormatteralloc]init];//设定时间格式,这里可以设置成自己需要的格式[dateFormatter setDateFormat:@"yyyy-MM-dd ...
分类:
移动开发 时间:
2016-01-15 22:48:54
阅读次数:
299
字符传常用功能 方法描述 string.capitalize 把字符串的第一个字符大写 用法:name = 'fenggongzi'print (name.capitalize()) Fenggongzi string.center(width) 返回一个原字符串居中,并使用空格填充至长度 widt...
分类:
编程语言 时间:
2016-01-15 22:45:50
阅读次数:
293
1 body { 2 margin: 0; 3 } 4 #game { 5 background: url("../images/back.png") repeat; 6 } 7 .wuli{ 8 position: absolute; 9 min-width: 200px...
分类:
其他好文 时间:
2016-01-15 22:46:39
阅读次数:
288
atitit.软件开发GUI布局管理优缺点总结javaswingwpfwebhtmlc++qtphpasp.netwinform1.Absoluti布局(经常使用) 12.Flow布局(不经常使用) 13.BorderLayout(不经常使用) 14.BoxLayout(html默认布局) 25.C...
分类:
编程语言 时间:
2016-01-15 22:48:01
阅读次数:
287
*URLConnection是个抽象类,它有两个直接子类分别是HttpURLConnection和JarURLConnection。另外一个重要的类是URL,通常URL可以通过传给构造器一个String类型的参数来生成一个指向特定地址的URL实例。*url.openConnection()方法返回的...
分类:
编程语言 时间:
2016-01-15 22:47:25
阅读次数:
201
OS error code 1: Operation not permittedOS error code 2: No such file or directoryOS error code 3: No such processOS error code 4: Interru...
分类:
数据库 时间:
2016-01-15 22:45:14
阅读次数:
285
公司网络实在太翔了,搞了一天最终成功把ubuntu从13.10升级到了14.10,中间也越到了非常多问题,记录下来,以备參考.13.10的时候想体验一把搜狗输入法,结果因为fcitx版本号太低,用了好多办法,愣是安装不了,结果人家好像仅仅支持LTS版本号的.一升级OK,立即安装,本片博文便是用搜狗输...
分类:
系统相关 时间:
2016-01-15 22:45:18
阅读次数:
197
常用方式: int a = 12; //注意:通常情况下,这个会设置成一个类变量,比如说Segement中的段锁与copyOnWriteArrayList中的全局锁 final ReentrantLock lock = new ReentrantLock()...
分类:
其他好文 时间:
2016-01-15 22:46:54
阅读次数:
154
git 提供了钩子功能,当某个操作发生时,可以执行某个动作。ftp上传时没有文件比较,虽然可以winscp提供了同步功能但是不够强大,而且文件多了,会花费比较长的时间。1、先在主机上搭建一个git服务器,可以参考前篇文章。2、修改post-receive切换到git仓库,比如cd /var/samp...
分类:
其他好文 时间:
2016-01-15 22:44:43
阅读次数:
203
??题目大意:给出一个简单无向图,每一个点的度为3。推断是否能将此图分解成若干爪的形式。使得每条边都仅仅出如今唯一的爪中。(点能够多次出如今爪中)这道题实质上就是问这个图是否为二分图,dfs判定就可以#include #include #include #include #include ...
分类:
其他好文 时间:
2016-01-15 22:45:32
阅读次数:
155
1 package com.example.server; 2 3 import java.io.BufferedReader; 4 import java.io.IOException; 5 import java.io.InputStreamReader; 6 import ja...
分类:
其他好文 时间:
2016-01-15 22:44:11
阅读次数:
247
Merge Two Sorted Lists: Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the f...
分类:
其他好文 时间:
2016-01-15 22:46:01
阅读次数:
180
A. Link/Cut TreeProgrammer Rostislav got seriously interested in the Link/Cut Tree data structure, which is based on Splay trees. Specifically, he is ...
分类:
其他好文 时间:
2016-01-15 22:43:11
阅读次数:
373
2016-1-15 LOGLOG最重要的作用即是为程序出bug时调试提供思路,一个自定义的log,需要有几个要素:1. 时间,以知道哪些log是我们所需要的,2. 标签,判断哪些log是属于哪些模块的,不然log太凌乱了
分类:
其他好文 时间:
2016-01-15 22:43:39
阅读次数:
198
场景:在一个Activity中多次使用弹出对话框。而且对话框携带着动态变化的信息数据,这时假设仅仅使用onCreateDialog(int id, Bundle bundle)回调,则会发现第一次以后的对话框携带的数据并没有更新。这是由于该回调仅仅被使用了一次,之后的每次使用的bundle都是第一次...
分类:
其他好文 时间:
2016-01-15 22:45:14
阅读次数:
195
如果使用代码创建view,那么就需要重写loadView方法:在这个方法中,如果不创建view,就会循环的调用loadView.- (void)loadView{ UIView*view = [[UIViewalloc]initWithFrame:[[UIScreenmainScreen]appli...
分类:
其他好文 时间:
2016-01-15 22:43:35
阅读次数:
228
这题我建了2棵线段树,这样来处理 最值和和值,简单的题目。#include#include#include#include#include#include#include#define INF 99999999#define ll __int64#define lson l,m,rt= p){ .....
分类:
其他好文 时间:
2016-01-15 22:42:57
阅读次数:
192