mysql中的using(using (SQLBase MyBase new SQLBase()) 高手帮解释下)
2024-08-28 02:45:53
导读 大家好,小东方来为大家解答以上的问题。mysql中的using,using (SQLBase MyBase new SQLBase()) 高手帮解释下这个很多人还不知道,...
大家好,小东方来为大家解答以上的问题。mysql中的using,using (SQLBase MyBase new SQLBase()) 高手帮解释下这个很多人还不知道,现在让我们一起来看看吧!
1、将USING()中声明的变量,作用域限制在uing()『』这个大括号中。
2、using其实是一个符合语句,它实现了idispose接口。
3、using (SQLBase MyBase = new SQLBase()) { return MyBase.ReturnDataSet(s_model); }楼主的程序中,mybase的作用域只在{}内,等程序执行到}时,mybase会自动销毁。
4、因为它实现了Idisponse接口。
5、一般情况下,对“继需”资源使用这种方式,比如说,数据库连接。
6、一定要在使用完后释放。
7、所采用using方式。
本文到此分享完毕,希望对大家有所帮助。
免责声明:本文由用户上传,如有侵权请联系删除!
猜你喜欢
- 08-28
- 08-28
- 08-28
- 08-28
- 08-28
- 08-28
- 08-28
- 08-28
最新文章
- 08-28
- 08-28
- 08-28
- 08-28
- 08-28
- 08-28
- 08-28
- 08-28