码迷,mamicode.com
首页 >  
搜索关键字:try ... catch ...    ( 15901个结果
python2
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
POJ 1703 Find them, Catch them
种类并查集!!! 这里使用的两段区间求法!!两种种类并查集比较好理解,就是和你不同类的两个就是同类!! 表情分界线 AC代码如下: #include #include #include #include #include #include #define inf 2000000000 #define linf 1000000000000000000LL #d...
分类:其他好文   时间:2014-07-29 13:18:17    阅读次数:208
py查询文件方法例子
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
AppSettingManager
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
java中异常注意的细节1
/* public class Test{ public static void main(String[] args){ int i=0; try{ func();//区别就是该函数抛出的异常被封装了,外界不知道到底会不会发生该异常 System.out...
分类:编程语言   时间:2014-07-28 15:11:23    阅读次数:215
python with原理
在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
TCP上传文件 遇到发现一些问题
publicclassTCPServerFsimplementsRunnable{ privateSockets; publicTCPServerFs(Sockets){ super(); this.s=s; } @Override publicvoidrun(){ //TODOAuto-generatedmethodstub //读取文件名 try{ InputStreamin=s.getInputStream(); //读取上传的文..
分类:其他好文   时间:2014-07-28 00:38:19    阅读次数:155
Python读写文件
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
java只使用try和finally不使用catch的原因和场景
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!