accommodate和cater什么区别
accommodate [ac·com·mo·date || ə’kɒmədeɪt]
v. 调节, 使适应, 和解; 供应;
适应
cater [ca·ter || ’keɪtə]
v. 备办食物; 投合; 满足;
为...提供饮食, 承办的酒席
certification是什么意思
certification
英 [ˌsɜ:tɪfɪˈkeɪʃn] 美 [ˌsɜ:rtɪfɪˈkeɪʃn]
n.证明,鉴定,证书;
[网络]证书; 证明,证明书; 学历证;
[例句]When I felt at loss, you called me all of a sudden and asked me whether
I had finished the certification.
正当我愁绪满怀时,突然接到你的电话,你居然问我有没有写好工作证明.
[其他]复数:certifications 形近词: certificatory justification mastification
java里try/catch语句通常什么时候用有什么含义
在Java中使用
try/catch语句捕获异常
try{
//1
code that might throw exception
//2
}
catch(Exception e){
//3
show error message
//4
}
finally{
//5
close resource
}
//6
1.当代码中没有抛任何异常
,则代码会执行完try
语句块中所有代码,在执行finally语句块代码
随后继续执行。执行过程
1-2-5-6
2.抛出在catch中捕获的异常,try语句一直执行,直到遇到异常,结束try语句中剩余代码的执行,跳转到匹配的catch语句中:
(catch
语句中可以重新抛出异常,目的是改变异常的类型)
如果catch
语句没有重新抛出异常
执行顺序
:
1-3-4-5
若果catch语句中重新抛出异常
执行顺序:1-3-5
3.抛出的异常不是由该catch语句捕获
执行顺序
1-5
注:无论哪个语句块中有return语句,都会执行finally语句块,而且如果finally
中语句块中含有return语句那么将会覆盖try
catch中的return语句
-cat