Welcome![Sign In][Sign Up]
Location:
Search - c-free

Search list

[CSharpC-ASM混合编程的毫秒级计时器

Description: C-ASM混合编程的毫秒级计时器 软件语言: 简体中文 软件类型: 国产软件 / 免费版 / 其他程序 运行环境: Win9x/NT/2000/XP/ 软件大小: 3KB-C - ASM mixed programming millisecond timer software languages : English software types : Domestic software / free version / other procedures runtime environment : CTP / software Size : 3KB
Platform: | Size: 3373 | Author: sdf | Hits:

[Booksc# com 编程

Description: Preface Welcome to C# COM+ Programming. If you have purchased this book or are currently contemplating this purchase, you may have a number of questions you are hoping this book will answer. The most common questions I get are “Is COM+ dead?” and “What is COM+’s role in .NET applications?” The answer to the first question is a definite “no”! The COM+ technology that Microsoft has included with Windows 2000 is still available to .NET programmers. In fact, some COM+ technologies that were previously available only to C++ programmers can now be used by Visual Basic .NET and C# programmers. The second question is always a little harder to answer. The typical response you would get from me is “it depends.” The technologies found in COM+ such as distributed transactions and queued components can be found only in COM+. The question to ask yourself when trying to decide if you should use a particular COM+ service is “Do I need this service in my application?” If the answer is yes, then feel free to use COM+. If the answer is no, then COM+ is not a good fit for your application. All of the code examples used in the book use the new programming language C#. C# is an object-oriented programming language developed specifically for .NET. In fact, .NET applications are the only applications you can write with C#. Throughout the book I point out the language features of C# that can help you write better COM+ components. Although all of the code is in C#, the examples can also be rewritten in C++ if you like.
Platform: | Size: 2161485 | Author: movieday | Hits:

[Books高质量C++C 编程指南

Description: 前 言 .......................................................................................................................................6 第 1 章 文件结构 ....................................................................................................................8 1.1 版权和版本的声明........................................................................................................8 1.2 头文件的结构 ...............................................................................................................8 1.3 定义文件的结构 ...........................................................................................................8 1.4 头文件的作用 ...............................................................................................................8 1.5 目录结构 .......................................................................................................................8 第 2 章 程序的版式 ................................................................................................................8 2.1 空行 ...............................................................................................................................8 2.2 代码行 ...........................................................................................................................8 2.3 代码行内的空格 ...........................................................................................................8 2.4 对齐 ...............................................................................................................................8 2.5 长行拆分 .......................................................................................................................8 2.6 修饰符的位置 ...............................................................................................................8 2.7 注释 ...............................................................................................................................8 2.8 类的版式 .......................................................................................................................8 第 3 章 命名规则 ....................................................................................................................8 3.1 共性规则 .......................................................................................................................8 3.2 简单的 WINDOWS 应用程序命名规则 .........................................................................8 3.3 简单的 UNIX 应用程序命名规则 ..................................................................................8 第 4 章 表达式和基本语句 ....................................................................................................8 4.1 运算符的优先级 ...........................................................................................................8 4.2 复合表达式 ...................................................................................................................8 4.3 IF 语句 ...........................................................................................................................8 4.4 循环语句的效率 ...........................................................................................................8 4.5 FOR 语句的循环控制变量 ............................................................................................8 4.6 SWITCH 语句 ..................................................................................................................8 4.7 GOTO 语句......................................................................................................................8 第 5 章 常量............................................................................................................................8 5.1 为什么需要常量 ...........................................................................................................8 5.2 CONST 与 #DEFINE 的比较 ...........................................................................................8 5.3 常量定义规则 ...............................................................................................................8 5.4 类中的常量 ...................................................................................................................8 第 6 章 函数设计 ....................................................................................................................8 2001 Page 3 of 101 高质量 C++/C 编程指南,v 1.0 6.1 参数的规则 ...................................................................................................................8 6.2 返回值的规则 ...............................................................................................................8 6.3 函数内部实现的规则....................................................................................................8 6.4 其它建议 .......................................................................................................................8 6.5 使用断言 .......................................................................................................................8 6.6 引用与指针的比较........................................................................................................8 第 7 章 内存管理 ....................................................................................................................8 7.1 内存分配方式 ................................................................................................................8 7.2 常见的内存错误及其对策.............................................................................................8 7.3 指针与数组的对比 ........................................................................................................8 7.4 指针参数是如何传递内存的? .....................................................................................8 7.5 FREE 和 DELETE 把指针怎么啦? .................................................................................8 7.6 动态内存会被自动释放吗? ........................................................................................8 7.7 杜绝“野指针” ...........................................................................................................8 7.8 有了 MALLOC/FREE 为什么还要 NEW/DELETE ?.......................................................8 7.9 内存耗尽怎么办?........................................................................................................8 7.10 MALLOC/FREE 的使用要点 .........................................................................................8 7.11 NEW/DELETE 的使用要点 ...........................................................................................8 7.12 一些心得体会 .............................................................................................................8 第 8 章 C++函数的高级特性 .................................................................................................8 8.1 函数重载的概念 ...........................................................................................................8 8.2 成员函数的重载、覆盖与隐藏 ....................................................................................8 8.3 参数的缺省值 ...............................................................................................................8 8.4 运算符重载 ...................................................................................................................8 8.5 函数内联 .......................................................................................................................8 8.6 一些心得体会 ...............................................................................................................8 第 9 章 类的构造函数、析构函数与赋值函数 .....................................................................8 9.1 构造函数与析构函数的起源 ........................................................................................8 9.2 构造函数的初始化表....................................................................................................8 9.3 构造和析构的次序........................................................................................................8 9.4 示例:类 STRING 的构造函数与析构函数 ..................................................................8 9.5 不要轻视拷贝构造函数与赋值函数 ............................................................................8 9.6 示例:类 STRING 的拷贝构造函数与赋值函数 ..........................................................8 9.7 偷懒的办法处理拷贝构造函数与赋值函数.................................................................8 9.8 如何在派生类中实现类的基本函数 ............................................................................8 9.9 一些心得体会 ...............................................................................................................8 第 10 章 类的继承与组合 ......................................................................................................8 2001 Page 4 of 101 高质量 C++/C 编程指南,v 1.0 10.1 继承 .............................................................................................................................8 10.2 组合 .............................................................................................................................8 第 11 章 其它编程经验 ..........................................................................................................8 11.1 使用 CONST 提高函数的健壮性..................................................................................8 11.2 提高程序的效率 ..........................................................................................................8 11.3 一些有益的建议 ..........................................................................................................8 参考文献 .................................................................................................................................8 附录 A :C++/C 代码审查表 ................................................................................................8 附录 B :C++/C 试题 ............................................................................................................8 附录 C :C++/C 试题的答案与评分标准.............................................................................8
Platform: | Size: 266130 | Author: chenliwolf@163.com | Hits:

[SourceCodertflib

Description: Introduction rtflib is a free C-library which is developed in order to help developers. Considering this release, 100% compatibility is achieved only with MS Word 97 to MS Word 2003 applications used as external RTF viewer to generated RTF documents. For the future, it is planned to extend this to all possible RTF viewers that support RTF specification 1.8 which is documented by Microsoft and can be found here. Background A developer may use CRichEditCtrl, a MFC control, in order to get RTF output from the source code. This is the control upon which WordPad application is built. But, there are many limitations when considering the generated RTF file. Also, an RTF document can be created with any advanced text editor directly. This library, however, provides a low-level interface to RTF syntax which is not so easy to be hand-coded like HTML. It can be extended and adopted to custom needs. Also, a custom high-level interface is a challenge to be built on this low-level interface base.
Platform: | Size: 11614 | Author: tk_xia@163.com | Hits:

[VC/MFCC++ Tutorial, in Beginning Visual C++ 6

Description: Welcome to the Wrox Press C++ tutorial "I hope you'll enjoy reading this tutorial with your portable, your work, or your home PC. It's a perfect companion to the Introduction to Visual C++ 6.0 Standard Edition manual and is a proven aid to understanding the C++ language. The material in this tutorial is adapted from my book Beginning Visual C++ 6.0, to provide you with a thorough grounding in 'pure' C++. I've been careful to address the new standards in C++ laid out by the ANSI and ISO committees and I encourage you to adopt these conventions so that your programs are maintainable for years to come. There's plenty of code in this tutorial, which you can cut and paste from the help viewer and is also available for download from the Wrox Press web site. We've tested this code extensively, but if you do encounter a problem, try visiting the web site, which will list any errata that may have been spotted since publication of this document. Also, remember that your suggestions for improving the text are very welcome - use the web site to give us your feedback. We try to keep all Wrox tutorials error free and appreciate your help in sustaining our high standards." Ivor Horton
Platform: | Size: 1203033 | Author: fridayya | Hits:

[Books高质量C++/C编程指南

Description: 第1章 文件结构... 11 1.1 版权和版本的声明... 11 1.2 头文件的结构... 12 1.3 定义文件的结构... 13 1.4 头文件的作用... 13 1.5 目录结构... 14 第2章 程序的版式... 15 2.1 空行... 15 2.2 代码行... 16 2.3 代码行内的空格... 17 2.4 对齐... 18 2.5 长行拆分... 19 2.6 修饰符的位置... 19 2.7 注释... 20 2.8 类的版式... 21 第3章 命名规则... 22 3.1 共性规则... 22 3.2 简单的Windows应用程序命名规则... 23 3.3 简单的Unix应用程序命名规则... 25 第4章 表达式和基本语句... 26 4.1 运算符的优先级... 26 4.2 复合表达式... 27 4.3 if 语句... 27 4.4 循环语句的效率... 29 4.5 for 语句的循环控制变量... 30 4.6 switch语句... 30 4.7 goto语句... 31 第5章 常量... 33 5.1 为什么需要常量... 33 5.2 const 与 #define的比较... 33 5.3 常量定义规则... 33 5.4 类中的常量... 34 第6章 函数设计... 36 6.1 参数的规则... 36 6.2 返回值的规则... 37 6.3 函数内部实现的规则... 39 6.4 其它建议... 40 6.5 使用断言... 41 6.6 引用与指针的比较... 42 第7章 内存管理... 44 7.1内存分配方式... 44 7.2常见的内存错误及其对策... 44 7.3指针与数组的对比... 45 7.4指针参数是如何传递内存的?... 47 7.5 free和delete把指针怎么啦?... 50 7.6 动态内存会被自动释放吗?... 50 7.7 杜绝“野指针”... 51 7.8 有了malloc/free为什么还要new/delete ?... 52 7.9 内存耗尽怎么办?... 53 7.10 malloc/free 的使用要点... 54 7.11 new/delete 的使用要点... 55 7.12 一些心得体会... 56 第8章 C++函数的高级特性... 57 8.1 函数重载的概念... 57 8.2 成员函数的重载、覆盖与隐藏... 60 8.3 参数的缺省值... 63 8.4 运算符重载... 64 8.5 函数内联... 65 8.6 一些心得体会... 68 第9章 类的构造函数、析构函数与赋值函数... 69 9.1 构造函数与析构函数的起源... 69 9.2 构造函数的初始化表... 70 9.3 构造和析构的次序... 72 9.4 示例:类String的构造函数与析构函数... 72 9.5 不要轻视拷贝构造函数与赋值函数... 73 9.6 示例:类String的拷贝构造函数与赋值函数... 73 9.7 偷懒的办法处理拷贝构造函数与赋值函数... 75 9.8 如何在派生类中实现类的基本函数... 75 9.9 一些心得体会... 77 第10章 类的继承与组合... 78 10.1 继承... 78 10.2 组合... 80 第11章 其它编程经验... 82 11.1 使用const提高函数的健壮性... 82 11.2 提高程序的效率... 84 11.3 一些有益的建议
Platform: | Size: 84427 | Author: 87503655@qq.com | Hits:

[Graph programGLZoom

Description: 此程序实现对图形的放大、缩小及自由拖动。-This procedure to enlarge the achievement of graphics, narrow and free drag.
Platform: | Size: 2009088 | Author: 陈凯迪 | Hits:

[AI-NN-PRgalib245

Description: 麻省理工开发的免费遗传算法类库GAlib,很好用,我用它实现过一些具体问题的遗传算法。- Hemp province technical development free heredity algorithm class storehouse GAlib, is very easy to use, I use it to realize some concrete questions heredity algorithms.
Platform: | Size: 506880 | Author: 应伟勤 | Hits:

[BooksThe Best CC++ Tips Ever

Description: 中文译名《最优C/C++编程秘诀》。书中对new/delete、malloc/free,构造/析构函数等等C/C++难点问题有详细深入的讲解。-Hansard "optimal C/C programming tips." Book of the new/delete and malloc/free, Construction/destructor function, etc. C/C difficult issues detailed, in-depth explanation.
Platform: | Size: 9833472 | Author: 王宏志 | Hits:

[Windows Develop类似金山词霸的ListCtrl控件

Description: 类似金山词霸的ListCtrl控件的完整源代码,推荐啊-similar free email ListCtrl control of the integrity of the source code, recommended ah
Platform: | Size: 78848 | Author: 陈鹏 | Hits:

[Windows Develop一个专门处理c++异常的类和例子

Description: CExceptionLogger,是一个可以免费使用的C++类,用它可以截获未处理异常,如:非法存取、栈溢出、被零除等,并可以将异常详细信息记录到日志文件...... -CExceptionLogger, is a free use of the category C, and it can be intercepted untreated abnormalities, such as : illegal access, stack overflow, zero, and can be extremely detailed information to the log file records ......
Platform: | Size: 92160 | Author: 何福保 | Hits:

[Graph program免费的JPEG2000软件Jasper的C源代码

Description: 免费的JPEG2000软件Jasper的C源代码-free JPEG2000 software Jasper C source code
Platform: | Size: 1100800 | Author: 李继豪 | Hits:

[Documents用C++ Builder编写Tray程序

Description: Tray(托盘)是Windows9x任务条上的一个特殊区域,它的技术名称为“任务栏布告区”,一些软件(如金山词霸Ⅲ)运行时会在托盘上放置一个图标,使用户一眼就能知道这个程序正在后台运行,要想激活它也很容易,通常只需单击一下这个图标即可,非常方便。-Tray (tray) Windows9x is on the task of a particular area, and its technical name for the "Notice task bar area," some software (such as free email ) will be running in place a tray icon, a user will be able to know the process is the background, in order to Shock live it is easy and usually only click on the icon and it would be very convenient.
Platform: | Size: 1024 | Author: 康怀杰 | Hits:

[Internet-NetworkSIMPLEFTPClient

Description: 这是用C#编写的免费的 .NET FTP客户端库。-This is the C# prepared free of charge.NET FTP client library.
Platform: | Size: 8192 | Author: paobuzou | Hits:

[Linux-Unixfreechat.beta2e.tar

Description: Free Chat beta release 2 fot linux,采用C语言写的运行在linux下的聊天室程序,英文的-Free Chat beta release 2 fot linux, using the C language to write the Linux operating under the chat room procedures, in English
Platform: | Size: 86016 | Author: 张jf | Hits:

[Windows Developcsplitstring拆分字符串

Description: 在做程序时,经常需要把文本按固定的标志进行拆分,CString 类提供了一些基本的字符串操作,本文就是利用CString类的基本函数来实现文本串的自由拆分 ,-doing procedures, the need for regular text by the fixed signs split redeem category provides some basic string manipulation, use redeem this is the basic function to achieve the free text string separation
Platform: | Size: 12288 | Author: 李秉肇 | Hits:

[OpenGL programOpenGL3DSpace

Description: OPENGL开发,可以自由行走的空间的源程序.-OpenGL development, can take free exercise of the space of the source.
Platform: | Size: 1238016 | Author: 周大 | Hits:

[Linux-Unixwblx-sdl-0.6.8.tar

Description: 五笔练习 for Linux V0.6.8 ( SDL版 )五笔练习 for Linux V0.6.8 是一个免费软件, 提供源代码,你可以根据通用公共许可证的条款使用和修改它。系统需求: 安装有SDL、SDL-devel 以及SDL_mixer SDL_mixer-devel库的1.2.x版本。-five exercises for Linux V0.6.8 (SDL version) five practice V0.6.8 for Linux is a free software, the source code, you can General Public License under the terms of the use and modify it. System requirements : the installation of SDL, SDL- devel and SDL_mixer SDL_mixer- devel for the 1.2.x version.
Platform: | Size: 219136 | Author: 秋然 | Hits:

[Windows Develop软件在线升级系统

Description: “软件在线升级系统”执行说明: 1、 光盘目录vc6.0\chapter6\bin\UpgradeAtv.dll为本系统的可执行文件。在测试之前要先使用regsvr32.exe注册这个DLL。 2、 光盘目录vc6.0\chapter6\Pages是本系统的测试页面。 3、 光盘目录vc6.0\chapter6\setup是系统安装指导。 4、 光盘目录vc6.0\chapter6\src\UpgradeAtv\*.*为本系统的VC源程序。 5、 光盘目录vc6.0\chapter6\Tools\*.*为本系统使用到的工具。 “软件在线升级系统”如何编译: 直接点击编译完成对整个项目的编译。 “软件在线升级系统”如何部署: 1、 配置IIS 以Pages目录为Web的根目录建立新的站点 2、 配置FTP 在本地机器上配置FTP站点,同时建立帐号hacker,密码为free。 把应用系统的安装文件setup.exe放在FTP的根目录下。 3、 注册ActiveX组件 使用regsvr32 UpgradeAtv.dll在本地的机器上注册UpgradeAtv.dll。 4、 使用本章提到的方法生成UpgradeAtx.cab,并且把它放置到 Web的根目录下。 5、 把IE的安全级别降低-"online update system software" implementation : a CD-ROM directory vc6.0 \ chapter6 \ bin \ UpgradeAtv.dll-based system of the executable. In testing before a registration regsvr32.exe use the DLL. 2, CD-ROM directory vc6.0 \ chapter6 \ Pages of the system test pages. 3, CD-ROM directory vc6.0 \ chapter6 \ setup is guiding system installed. 4, CD-ROM directory vc6.0 \ chapter6 \ src \ UpgradeAtv \*.*-based system of VC source. 5, CD-ROM directory vc6.0 \ chapter6 \ Tools \*.*-based system to use the tool. "Software Online Upgrade System" How compiler : direct hits compiler of the entire project completed compiler. "Software Online Upgrade System," how to deploy : one, to configure IIS Web Pages directory to the root directory to establish two new sites, FTP
Platform: | Size: 8656896 | Author: 徐夕 | Hits:

[Other Games飞行器模拟

Description: Thanks for downloading my Logix RC flight simulator. This is a Micro$oft Visual C++ project, so it would be easiest for you to open it with MSVC++ but if you dont have it, you can always use your own compiler, the source files are all there. My program uses some free library offered by Microsoft that make direct X much easier and faster to use. They are located in the 3dPlus directory, you will have to add them to the lib, and include directory on your compiler. The EXE is included, it searches for a bitmap to use as the ground, this is determined in the source. Im know the commenting on the source leaves some to be expected, but i ve run low on time. If you need help, source code to the librarys, or anything else email me at: logix@ionet.net I ll even send you a CD with everything on it if you mail me a few dollars. Please feel free to distribute this but leave it intact.-Thanks for downloading my Logix RC flight simulator. This is a Micro$oft Visual C++ project, so it would be easiest for you to open it with MSVC++ but if you dont have it, you can always use your own compiler, the source files are all there. My program uses some free library offered by Microsoft that make direct X much easier and faster to use. They are located in the 3dPlus directory, you will have to add them to the lib, and include directory on your compiler. The EXE is included, it searches for a bitmap to use as the ground, this is determined in the source. Im know the commenting on the source leaves some to be expected, but i ve run low on time. If you need help, source code to the librarys, or anything else email me at: logix@ionet.net I ll even send you a CD
Platform: | Size: 188416 | Author: myles | Hits:
« 1 2 3 4 56 7 8 9 10 ... 50 »

CodeBus www.codebus.net