码迷,mamicode.com
首页 >  
搜索关键字:open    ( 24465个结果
C++MFC编程笔记day07 MFC的文件操作、序列化和保存
一 MFC的文件操作    1 相关类      CFile类-封装了文件句柄以及操作文件的API函数。      CFileFind类-提供文件查找功能。    2 CFile类的使用      2.1 打开或者新建文件          CFile::Open      2.2 文件读写          注意:1 文件指针位置 2 异常处理          CFile::...
分类:编程语言   时间:2014-08-04 14:28:17    阅读次数:841
几个比较实用的.Net 反编译工具
1. Visual Studio 自带的IL DASM Visual Studio 的Tools中可以找到IL DASM,通过File-Open打开一个你想反编译的dll 单击方法名,则会跳出该方法的IL代码,如下图: 2. ILSpy: 对dll反编译后支持C#、VB和IL的显示3. Je...
分类:Web程序   时间:2014-08-04 13:50:17    阅读次数:277
12 Source Code Profilers for C & C++
Source :http://open-tube.com/12-source-code-profilers-for-cc/Code Profilers are very distinct from traditional debuggers. They are able to catch the t...
分类:编程语言   时间:2014-08-04 13:38:17    阅读次数:467
window.close(); 关闭浏览器窗口js代码的分析总结
序号关闭代码需要确认无任何作用无需确认测试1window.close()IE7firefox,chrome,safariOperaClose2window.opener=null;window.open('','_self');window.close();firefoxIE7,Opera,chro...
分类:Windows程序   时间:2014-08-04 13:35:07    阅读次数:304
《iOS应用逆向工程》学习笔记(五)初尝越狱插件OpenSSH
首先在越狱机子上装上OpenSSH插件,然后然后用Mac上的Terminal通过Open SSH连接到设备上。...
分类:移动开发   时间:2014-08-03 23:23:16    阅读次数:252
Architecture.SOLID Principles
1. Single Responsibilityhttp://en.wikipedia.org/wiki/Single_responsibility_principle (ToRead)2. Open/Closedhttp://en.wikipedia.org/wiki/Open/closed_pr...
分类:其他好文   时间:2014-08-03 23:07:06    阅读次数:216
Matlab工具箱安装体会
总结有两点:1、如需添加jar包等附加库,可在待安装工具箱下,新建一个java文件夹,并将jar包等文件存放在里面,然后执行以下操作:1)Create or open your preferences file: edit(fullfile(prefdir,'javaclasspath.txt'))...
分类:其他好文   时间:2014-08-03 17:50:25    阅读次数:218
linux c 文件打开并创建代码分析
[root@luozhonghua 03]# cat ex03-open-03.c/*文件ex03-open-03.c,O_CREAT和O_EXCL的使用*/#include #include #include #include int main(void){ int fd = -1; char filename[] = "test.txt"; /*打开文件,如果文件不存在,则报错*/ fd = ...
分类:系统相关   时间:2014-08-03 12:47:55    阅读次数:324
linux c 文件 read(读) 和 write (写) 代码分析
read code: [root@luozhonghua 03]# cat ex03-read-01.c /*文件ex03-open-03.c, O_CREAT和O_EXCL的使用*/ #include #include #include #include int main(void) {   int fd = -1,i;   ssize_t size...
分类:系统相关   时间:2014-08-03 12:46:45    阅读次数:355
VLC 使用
int_tmain(intargc,_TCHAR*argv[])19{20libvlc_instance_t*inst;21libvlc_media_player_t*mp;22libvlc_media_t*m;23libvlc_log_t*log;2425/*LoadtheVLCengine*/26inst=libvlc_new(0,NULL);2728//logging29log=libvlc_log_open(inst);30libvlc_set_log_verbosity(inst,2);31unsi..
分类:其他好文   时间:2014-08-03 08:04:45    阅读次数:1552
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!