自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Kim4Apple

技术分享

  • 博客(9)
  • 资源 (5)
  • 收藏
  • 关注

转载 HTTP/FTP客户端开发库:libwww、libcurl、libfetch 以及更多[转]

网页抓取和ftp访问是目前很常见的一个应用需要,无论是搜索引擎的爬虫,分析程序,资源获取程序,WebService等等都是需要的,自己开发抓取库当然是最好了,不过开发需要时间和周期,使用现有的Open source程序是个更好的选择,一来别人已经写的很好了,就近考验,二来自己使用起来非常快速,三来自己还能够学习一下别人程序的优点。闲来无事,在网上浏览,就发现了这些好东西,特别抄来分享分享。主要就是

2009-01-03 16:46:00 1516

原创 关于MFC中RTTI的理解

 本文是关于看《深入浅出MFC》RTTI的一些理解和想法。由于知识水平的有限,有错误的地方请大家指正。  正在看侯捷的《深入浅出MFC》在第三章中关于RTTI类型表的构建中,侯捷所模拟的代码是所有存在于一个exe文件中的!其实在mfc头文件中关于CRuntimeClass类的声明如下:   <v:shapetypeid="_x0000_t75" coordsize="21600,216

2008-05-25 16:46:00 1097

转载 [转帖]Windows WorkFlow Foundation 入门

声明:本文转自http://www.cnblogs.com/watsonyin/本文仅供自己参考用,若转载请加上面的声明!Windows WorkFlow Foundation入门(一)          这几天在学习Windows WorkFlow Foundation(以下简称WF),但并没有很好的学习资料,所以干脆翻译了。本人英文不怎么样,译得不好,请见谅啊一、工作流概述

2008-01-05 19:30:00 1068

转载 瀑布模型开发阶段

瀑布模型开发阶段 阶段 主要工作 应完成的文档 应完成的文档质量控制手段

2008-01-05 18:29:00 4508

转载 [转]谈软件生命周期模型及其选择

瀑布模型/改进的瀑布模型虽然瀑布模型仍然存在很多的问题有待解决,但瀑布模型仍然是最基本的和最效的一种可供选择的软件开发生命周期模型.瀑布模型要求软件开发严格按照需求->分析->设计->编码->测试的阶段进行,每一个阶段都可以定义明确的产出物和验证准则.瀑布模型在每一个阶段完成后都可以组织相关的评审和验证,只有在评审通过后才能够进入到下一个阶段. 由于需要对每一个阶段进行验证,瀑布模型要

2008-01-05 18:19:00 1249

原创 WWF支持的工作流模式和风格

WWF支持的工作流模式和风格Dino Esposito的文章Getting Started with Microsoft Windows Workflow Foundation: A Developer Walkthroughhttp://msdn.microsoft.com/windowsvista/building/workflow/default.aspx?pull=/libra

2008-01-03 14:13:00 1081

转载 c++ typedef 函数指针

c++ typedef 函数指针

2007-04-23 02:53:00 2577

转载 Win32 Binary Resource Formats

Win32 Binary Resource Formats- -                                   Author: Floyd Rogers Preface This document was edited and released by Microsoft Developer Support. It describes the

2007-04-19 15:34:00 1320

转载 GCC中文使用手册(转贴)

GCC中文使用手册- -Tag: GCC手册                                           GCC 中文手册 Author:  Date:    GCC 中文手册 GCCSection: GNU Tools (1)Updated: 2003/12/05Index Return to Main Contents -----------------

2007-04-19 15:24:00 1262

Essential C++

"Readers can pick up this book and become familiar with C++ in a short time. Stan has taken a very broad and complicated topic and reduced it to the essentials that budding C++ programmers need to know to write real programs. His case study is effective and provides a familiar thread throughout the book." -Steve Vinoski, IONA<br/><br/>For the practicing programmer with little time to spare, Essential C++ offers a fast-track to learning and working with C++ on the job. This book is specifically designed to bring you up to speed in a short amount of time. It focuses on the elements of C++ programming that you are most likely to encounter and examines features and techniques that help solve real-world programming challenges. <br/><br/>Essential C++ presents the basics of C++ in the context of procedural, generic, object-based, and object-oriented programming. It is organized around a series of increasingly complex programming problems, and language features are introduced as solutions to these problems. In this way you will not only learn about the functions and structure of C++, but will understand their purpose and rationale.

2007-04-30

[C++经典]C++ Standard Library, The: A Tutorial and Reference

经典名著C++ Standard Library, The: A Tutorial and ReferenceNicolai M. Josuttis <br/>Publisher: Addison Wesley<br/> <br/>C++ Standard Library provides a set of common classes and interfaces that greatly extend the core C++ language. The library, however, is not self-explanatory. To make full use of its components-and to benefit from their power-you need a resource that does far more than list the classes and their functions.<br/><br/>The C++ Standard Library not only provides comprehensive documentation of each library component, it also offers clearly written explanations of complex concepts, describes the practical programming details needed for effective use, and gives example after example of working code.<br/><br/>This thoroughly up-to-date book reflects the newest elements of the C++ standard library incorporated into the full ANSI/ISO C++ language standard. In particular, the text focuses on the Standard Template Library (STL), examining containers, iterators, function objects, and STL algorithms. You will also find detailed coverage of special containers, strings, numerical classes, internationalization, and the IOStream library. Each component is presented in depth, with an introduction to its purpose and design, examples, a detailed description, traps and pitfalls, and the exact signature and definition of its classes and their functions. An insightful introduction to fundamental concepts and an overview of the library will help bring newcomers quickly up to speed.<br/><br/>Comprehensive, detailed, readable, and practical, The C++ Standard Library is the C++ resource you will turn to again and again.<br/><br/>

2007-04-30

Linux 内核完全注释.pdf

Linux 内核完全注释.pdf

2007-04-26

蚁群算法(概述)

蚁群算法(概述).pdf

2007-04-24

C++对象模型

经典名著 Inside the C++ Object Model <br/>By Stanley B. Lippman <br/> <br/>Inside the C++ Object Model focuses on the underlying mechanisms that support object-oriented programming within C++: constructor semantics, temporary generation, support for encapsulation, inheritance, and "the virtuals"-virtual functions and virtual inheritance. This book shows how your understanding the underlying implementation models can help you code more efficiently and with greater confidence. Lippman dispells the misinformation and myths about the overhead and complexity associated with C++, while pointing out areas in which costs and trade offs, sometimes hidden, do exist. He then explains how the various implementation models arose, points out areas in which they are likely to evolve, and why they are what they are. He covers the semantic implications of the C++ object model and how that model affects your programs.<br/><br/>

2007-04-24

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除