搜索资源列表
C++
- C++编码规范与指导。对于任何工程项目来说,统一的施工标准都是保证工程质量的重要因素。堪称当今人类最抽象、最复杂的工程——软件工程,自然更加不能例外。 高品质、易维护的软件开发离不开清晰严格的编码规范。本文档详细描述C++软件开发过程中的编码规范。本规范也适用于所有在文档中出现的源码。
第一阶段项目测试
- 学士后c#第一阶段项目题
C++强大的背后
- 在31年前(1979年),一名刚获得博士学位的研究员,为了开发一个软件项目发明了一门新编程语言,该研究员名为Bjarne Stroustrup,该门语言则命名为——C with classes,四年后改称为C++。C++是一门通用编程语言,支持多种编程范式,包括过程式、面向对象(object-oriented programming, OP)、泛型(generic programming, GP),后来为泛型而设计的模版,被发现及证明是图灵完备的,因此使C++亦可支持模版元编程范式(templa
report
- 办公自动化系统为公司的高效率工作提供了一个简捷的途径。该系统可以提供公司公共文档管理、企业文件管理、人事管理、公司日程管理、企业资源管理和项目管理等功.能。本系统基于Visual C#.Net和SQL Server环境进行开发,实现了公司日程、公告的查看及管理,部门管理和员工管理等多项功能-Office automation system for the efficient work of the company provides a simple way. The system can pro
txt
- 项目需求分析文档。包含新生入学管理系统,收费退费及勤工俭学等部分。-Project needs analysis document. Includes freshmen enrollment management systems, work-study program, such as fees and refund part.
csglx
- 超市管理系统需求分析其中有目录1项目计划 1.1系统开发目的1.2背景说明等 -Supermarket Management System Requirements Analysis
coding-convention
- 某大项目C编程规范,包括代码规范、调试规范、管理规范等等。供参考。-C programming a large project, including the specification code, debugging norms, regulations and so on. For reference.
CMM
- 中科大软件工程专业,CMM课件 包括CMM 项目管理等内容,内部资料,不可多得!-USTC Software Engineering, CMM courseware including project management, etc. CMM, internal data, rare!
C
- C++课程设计项目名称:足球积分排名 试编一程序统计最近一轮比赛后,各队积分及排名。 -C++ Program Design Project Name: Football standings trial compilation of a statistical procedure, after the latest round of matches, the team and ranking points.
ASP.Net(CSharp)OA
- 本毕业设计首先介绍了ASP.NET Web应用系统的方案设计要素及框架设计方法,然后选择了系统管理、人事管理系统、项目管理系统、文档管理系统、内部邮件系统以及公司日程管理系统作为案例,深入剖析了办公自动化系统的开发思路、实现方法和技巧。 本毕业设计注重实用性和工程实践性,紧密结合办公自动化的应用需求,本毕业设计适合正在从事或希望从事办公自动化软件开发的人员阅读。 通过对本毕业设计的系统实践,学生能够对ASP.NET进行更深层次的了解,在能快速、独立地开发出一套商业软件的同时还能学会一整套
Leaning-Language-C
- 本文章是宋宝华先生编写的C语言嵌入式系统编程修炼之道,因为他在嵌入式系统项目的开发过程中,一次一次感受到C语言的精妙,所以编写此文章将C语言嵌入式编程介绍给大家。-This article is written in C language of Mr. Song Baohua embedded systems programming practice of the Road, because he was in the embedded system project development pr
C-language-code-into-labview
- 将c语言创建的代码集成到labview项目中,使c语言转换成并行的labview程序-C language code will be created into labview project, so that c language program into a parallel labview
C-Sharp-Lessons-Learned
- C#项目经验总结-送给那些缺少经验的朋友学习-C# Lessons Learned- to give those less experienced friend to learn
VS2010
- 本演练将逐步指导您使用 Microsoft Visual Studio 2010 来创建、运行和自定义一系列测试。您将从正处于开发过程中的 C# 项目开始,创建执行该项目代码的测试,运行测试并检查结果。然后,可以更改项目代码并重新运行测试。-This walkthrough will gradually guide you to use Microsoft Visual Studio 2010 to create, run and customize a series of tests. You
028449-01.rar
- 初步了解mfc,对其有基本了解,有助于开发c++项目,Preliminary understanding mfc, their basic understanding help develop c++ project
VS2010_CSharp_develop_create
- 超级详细的vs2010平台安装部署C#项目。对于初学者非常有帮助-Super detailed vs2010 platform installation to deploy a C# project. Very helpful for beginners
Cbighelp
- c项目开发,源码加版书,学c语言,一通百通-C project development, plus source version of the book, learning C language, follow.....have a good help!!!
Java-and-C-language
- Java及C语言软件编程设计及应用,软件开发的平台介绍及研究,还有几个具体的项目实例介绍。-Java and C programming language software design and application software development platform to introduce and study, there are a few specific examples of projects introduction.
大道至简
- 描述了软件项目的开发过程,工程管理,团队管理(The development process of software project, engineering management, team management)
c++头文件大全
- 1. 头文件只是声明,不占内存;在编译时会被合并到源文件 2. 头文件和其它C语言文件一样可以引用其它文件,可以写预处理块但是不要出现具体语句 3. 可以在头文件中定义宏函数,其本质上还是一个声明 4. 各个头文件相互独立,标准头文件之间不存在相互包含关系 5. 头文件可以重复引用,但是相当于只导入一次 6. 从C语法角度讲完全可以在头文件中写任何东西,因为#include在作用上和Ctrl-C + Ctrl-V等效——但是这样时不推荐的;头文件的作用就是更好的组织代码