def singleton(lock): try: fcntl.flock(lock, fcntl.LOCK_EX | fcntl.LOCK_NB) except: print 'ho' exit(0)在guyang的util.py中的一段代码....
分类:
编程语言 时间:
2014-07-29 14:12:38
阅读次数:
212
种类并查集!!!
这里使用的两段区间求法!!两种种类并查集比较好理解,就是和你不同类的两个就是同类!!
表情分界线
AC代码如下:
#include
#include
#include
#include
#include
#include
#define inf 2000000000
#define linf 1000000000000000000LL
#d...
分类:
其他好文 时间:
2014-07-29 13:18:17
阅读次数:
208
mportosdeffindExtension(path,el):if(os.path.exists(path)):try:items=os.listdir(path)foriteminitems:if(os.path.isfile(os.path.join(path,item))):print(i...
分类:
其他好文 时间:
2014-07-29 11:09:46
阅读次数:
244
1 public class AppSettingManager 2 { 3 public static bool Update(string key, string value) 4 { 5 6 try 7 ...
分类:
移动开发 时间:
2014-07-28 15:19:13
阅读次数:
259
/* public class Test{ public static void main(String[] args){ int i=0; try{ func();//区别就是该函数抛出的异常被封装了,外界不知道到底会不会发生该异常 System.out...
分类:
编程语言 时间:
2014-07-28 15:11:23
阅读次数:
215
在python2.5+中可以用with来保证关闭打开的文件with open('hello.txt') as f: do some file operations为什么要引入with呢?在之前如果要保证关闭文件需要这样:f = open('hello.txt')try: do some fi...
分类:
编程语言 时间:
2014-07-28 11:36:00
阅读次数:
305
publicclassTCPServerFsimplementsRunnable{
privateSockets;
publicTCPServerFs(Sockets){
super();
this.s=s;
}
@Override
publicvoidrun(){
//TODOAuto-generatedmethodstub
//读取文件名
try{
InputStreamin=s.getInputStream();
//读取上传的文..
分类:
其他好文 时间:
2014-07-28 00:38:19
阅读次数:
155
1.open使用open打开文件后一定要记得调用文件对象的close()方法。比如可以用try/finally语句来确保最后能关闭文件。file_object = open('thefile.txt')try: all_the_text = file_object.read( )finally: f...
分类:
编程语言 时间:
2014-07-27 22:58:39
阅读次数:
221
JDK并发工具包中,很多异常处理都使用了如下的结构,如AbstractExecutorService,即只有try和finally没有catch。
class X
{
private final ReentrantLock lock = new ReentrantLock();
// ...
public void m()
{
lock.lock(); ...
分类:
编程语言 时间:
2014-07-27 11:55:33
阅读次数:
275
Boost.ScopeExit库由于种种原因,C++中没有Java或C#中的try{}finally{}语句,虽然有SEH,可以实现finally效果,但是可定制性太差,不尽人意。SEH实现的finally语句__try{ throw std::bad_exception();}__finally{...
分类:
其他好文 时间:
2014-07-27 10:46:42
阅读次数:
223