为了账号安全,请及时绑定邮箱和手机立即绑定

SqlSession sqlsession=null;为什么写在Try...catch语句外面?

SqlSession sqlsession=null;
try{
sqlSession = dbAccess.getSqlSession();
}catch(){
e.printStackTrace();
}finally{
sqlSession.close();
}

SqlSession sqlsession=null;为什么写在Try...catch语句外面?而不是

try{
SqlSession sqlSession = dbAccess.getSqlSession();
}

正在回答

1 回答

try 块是有他自己的作用域的,如果你变量定义在 try 里,在 try 块外部就不能使用了。

2 回复 有任何疑惑可以回复我~
#1

昵称是JaVa 提问者

原来如此,非常感谢!
2017-04-06 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

SqlSession sqlsession=null;为什么写在Try...catch语句外面?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信