CSDN专家博客精华版

为人民服务!
  首页  :: 新随笔  :: 管理
上一页 1 ··· 490 491 492 493 494 495 496 497 498 ··· 521 下一页

2007年12月17日

摘要: 使用网上比较普遍的vb中使用WindowsAPI实现打开文件对话框代码,Declare Function GetOpenFileName Lib "comdlg32.dll" Alias _ "GetOpenFileNameA" (pOpenfilename As OPENFILENAME) As Long Type OPENFILENAME lStructSize A... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(489) 评论(0) 推荐(0) 编辑

摘要: Process Environment1 Process Termination进程的终止有些下面的方法:1. 从main函数return2. 调用exit:exit属于ISO C标准中定义的函数,会执行清理工作。包括关闭IO库中所有打开的文件流(这会导致所有的文件buffer都被flush),还会调用阿texit所注册的退出函数。Exit还会。等价于return (0)3. ... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(78) 评论(0) 推荐(0) 编辑

摘要: 以前有不少朋友问关于学习各种技术的推荐书籍的问题,这里把我觉得比较好的一些书籍列一下,希望能起到抛砖引玉的作用就好了:)C++C++ Primer,Thinking in C++,The Standard C++ Library,The C++ Programming Language:这几本书就不多介绍了,很有名的书,我就不罗嗦了Effective C++和More Effective C+... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(199) 评论(0) 推荐(0) 编辑

摘要: 以前有不少朋友问关于学习各种技术的推荐书籍的问题,这里把我觉得比较好的一些书籍列一下,希望能起到抛砖引玉的作用就好了:)Win32开发Programming Windows by Charles Petzold:Charles Petzold的书,Windows编程入门的超经典书籍,很多朋友学习了MFC,可是还是不清楚Windows程序的运作原理,结构和各种API的用法,这本书由浅入深的讲解了... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(133) 评论(0) 推荐(0) 编辑

摘要: WPF/E是微软下一代Web平台的核心技术,跨平台(支持Windows和Mac),可以在多种浏览器中运行,会自动下载一个很小只有数M的客户端来运行WPF/E代码:WPF/E简介:http://msdn2.microsoft.com/en-us/library/bb190634.aspxWPF/E入门教程:http://www.microsoft.com/china/MSDN/library/W... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(76) 评论(0) 推荐(0) 编辑

摘要: Process Control1 Process Identifiers1. PID=0一般是调度进程,又称为swapper2. PID=1一般是init进程,在引导过程之后启动,负责启动整个UNIX系统,所有Orphaned子进程都会自动成为init的子进程3. PID=2一般是页面守护进程,负责将虚拟内存的换页4. 下面函数被用来获得pid: ... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(138) 评论(0) 推荐(0) 编辑

摘要: Itanium C++ ABI: Exception Handling ($Revision: 1.22 $) Contents Introduction Definitions Base Documents Open Issues --> Level I: Base ABI ... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(146) 评论(0) 推荐(0) 编辑

摘要: For instructions on how to build libunwind, see the README file in the libunwind source tree. Some notes illustrating the use of libunwind can be found in the file doc/NOTES. Manual Pages libunwi... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(245) 评论(0) 推荐(0) 编辑

摘要: Itanium C++ ABI: Exception Handling ($Revision: 1.22 $) Contents Introduction Definitions Base Documents Open Issues --> Level I: Base ABI 1.... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(162) 评论(0) 推荐(0) 编辑

摘要: 9 Process Relationships1 Process Groups1. 每个进程属于一个Process Group,这个process Group从同样的Terminal获得Signal2. Getpgrp可以获得process Group ID,也用pid_t结构表示: #include ... 阅读全文

posted @ 2007-12-17 10:17 csdnexpert 阅读(98) 评论(0) 推荐(0) 编辑

上一页 1 ··· 490 491 492 493 494 495 496 497 498 ··· 521 下一页