码迷,mamicode.com
首页 >  
搜索关键字:finally    ( 2501个结果
javascript7
语句:条件,循环,跳转,表达式语句,复合语句和空语句,声明语句,var,function,条件语句,switch,循环,标签语句,break语句,continue语句,return语句,throw语句,try/catch/finally语句,with语句,debugger语句,use strict对...
分类:编程语言   时间:2015-01-21 13:10:36    阅读次数:210
Java学习笔记之异常
//概述 /* 异常: 是在运行时期发生的不正常情况.. 在java中用类的形式对不正常情况进行了描述和封装对象. 描述不正常的情况的类, 就称为异常类. 以前正常流程代码和问题处理代码相结合, 现在将正常流程代码和问题处理代码分离, 提高阅读性. 其实异常就是java通过面向对象的思想将问题封装成了对象. 用异常类对其进行描述. 不同的问题用不同的类进行具体的描述. 问题很多, 意...
分类:编程语言   时间:2015-01-19 10:56:41    阅读次数:252
java.util.concurrent.locks lock锁【2】
Lock 锁介绍 JDK1.5以前,我们实现线程同步都是通过synchroized关键字进行方法或者语句块锁定,以保证该关键字作用域内的操作都是原子性操作。 JDK1.5以后,提供的并发包提供了更强大的功能和更为灵活,最为关键的是需要手工释放锁,需要unlock必须在finally方法内。这是非常值得注意的事情。 介绍一下Lock接口。实现类有3个,分别是 普通锁,读写锁-写...
分类:编程语言   时间:2015-01-17 23:35:17    阅读次数:319
(简单) HDU 2612 Find a way,BFS。
Description Pass a year learning in Hangzhou, yifenfei arrival hometown Ningbo at finally. Leave Ningbo one year, yifenfei have many people to meet...
分类:其他好文   时间:2015-01-16 23:46:04    阅读次数:185
Financial Management
Financial Management 时间限制:3000 ms  |  内存限制:65535 KB 难度:1 描述Larry graduated this year and finally has a job. He's making a lot of money, but somehow never seems to have enough. Larry has d...
分类:其他好文   时间:2015-01-15 16:13:44    阅读次数:123
Reactivate this account after 8-year-suspension
I didn't use this blog system for almost 9 years due to account/password and other issues.After I finally reactivate it, I think it's a good sign for ...
分类:其他好文   时间:2015-01-14 00:48:11    阅读次数:173
Mutex,Monitor,lock,MethodImplAttribute,SynchronizedAttribute的用法差异
1)Mutex:进程之间的同步(互斥量)。2)lock/Monitor……:线程同步。其中lock是Monitor的简化版本(直接生成try{Monitor.Enter(……)}finally{Monitor.Exit(……);}方法。当然,Monitor还有Pulse方法,该方法对于锁定同一个对象...
分类:其他好文   时间:2015-01-13 12:24:58    阅读次数:197
C# try catch finally 执行
try{ //dosomething eg: int a = 1; int b = 2; int c = a + b; if(c>2) { return; }}catch(Exception ex){ //dosomething eg: MessageBox.Show("ER...
分类:Windows程序   时间:2015-01-12 12:58:24    阅读次数:184
git ,创建生成 making git-svn work on mac tiger
http://www.mikeheijmans.com/2008/04/make-git-svn-work-on-mac-osx-tiger/After a few hours of googling and pull some hair out, I have finally figured ou...
分类:系统相关   时间:2015-01-10 12:25:37    阅读次数:741
bzoj 3851: 2048 dp优化
3851: 2048Time Limit: 2 SecMemory Limit: 64 MBSubmit: 22Solved: 9[Submit][Status]DescriptionTeacher Mai is addicted to game 2048. But finally he finds...
分类:其他好文   时间:2015-01-08 12:54:28    阅读次数:612
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!