方法一:借助auto、decltype、unique_ptr、Lambda表达式构造 sqlite3 *db = NULL; auto deleter = [](sqlite3 *pdb){sqlite3_close(pdb);} int nRet = sqlite3_open16(L"F:\\my...
分类:
编程语言 时间:
2014-07-16 22:59:07
阅读次数:
385
socket编程原理1、问题的引入1) 普通的I/O操作过程:UNIX系统的I/O命令集,是从Maltics和早期系统中的命令演变出来的,其模式为打开一读/写一关闭(open-write-read-close)。在一个用户进程进行I/O操作时,它首先调用“打开”获得对指定文件或设备的使用权,并返回称...
分类:
其他好文 时间:
2014-07-16 20:42:22
阅读次数:
194
CAnimateCtrl成员函数播放avi动画一、CAnimateCtrl成员函数Autoplay;CAnimateCtrl ::成员函数Open打开avi视频Play播放没有声音的aviSeek选择相应的帧Stop停止播放Close关闭播放
分类:
其他好文 时间:
2014-07-15 08:13:22
阅读次数:
186
先close()再dispose()之后=null最后GC.Collect()如:ms.Close();//关闭流,并释放与之相关的资源ms.Dispose();//如果是流的话,默认只会释放非托管资源ms = null;//这样可以释放托管资源GC.Collect();//回收资源四步一步都不能少...
分类:
其他好文 时间:
2014-07-15 00:13:01
阅读次数:
224
ContentObserver和DataSetObserver区别ContentObserver是一个提前通知,这时候只是通知cursor说,我的内容变化了。DataSetObserver是一个后置通知,只有通过requery() deactivate() close()方法的调用才能获得这个通知。...
分类:
其他好文 时间:
2014-07-14 19:14:06
阅读次数:
229
服务端:#!/usr/bin/pythonimportsockets=socket.socket()host=‘10.67.15.96‘port=889s.bind((host,port))s.listen(5)whileTrue:c,addr=s.accept()print‘++++++‘c.send(‘server‘)b=c.recv(1024)printbc.close()客户端:#!/usr/bin/pythonimportsockets=socket.socket()host=‘10.6..
分类:
其他好文 时间:
2014-07-14 16:24:40
阅读次数:
183
Given a string containing just the characters '(', ')', '{', '}', '[' and ']',
determine if the input string is valid.
The brackets must close in the correct order, "()" and "()[]{}" are
all va...
分类:
其他好文 时间:
2014-07-13 16:11:26
阅读次数:
144
在Binding close event时候,需要从ViewModel关闭Window.一个很简洁的解决方案就是,将Window 当做CommandParameter传过去。Command="{Binding SaveCommand}"CommandParameter="{Binding Eleme...
1.this.Close(); 只是关闭当前窗口,若不是主窗体的话,是无法退出程序的,另外若有托管线程(非主线程),也无法干净地退出;2.Application.Exit(); 强制所有消息中止,退出所有的窗体,但是若有托管线程(非主线程),也无法干净地退出;3.Application.ExitTh...
分类:
其他好文 时间:
2014-07-11 09:34:34
阅读次数:
170
我采用的是MySQLdb操作的MYSQL数据库。先来一个简单的例子吧:importMySQLdb
try:
conn=MySQLdb.connect(host=‘localhost‘,user=‘root‘,passwd=‘root‘,db=‘test‘,port=3306)
cur=conn.cursor()
cur.execute(‘select*fromuser‘)
cur.close()
conn.close()
exceptMySQLdb.Error,e..
分类:
数据库 时间:
2014-07-10 18:20:40
阅读次数:
282