




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、Computer programming Computer programming (often shortened to programming or coding) is the process of designing. writing, and debugging the source code of computer programs. This source code is written in a programming language. The purpose of programming is to create a program that exhibits a cert
2、ain desired behavior. The process of writing source code often requires expertise in many different subjects. including knowledge of the application domain, specialized algorithms and formal logic. 计算机编程(通常缩短编程或编码)设计的过程。编写和调试计算机程序的源代码。这个源代码是用编程语言编写的。编程的目的是创建一个程序,展示一定的预期行为。编写源代码的过程通常需要专业知识在很多不同的科目。包括
3、应用程序域的知识,专门的算法和形式逻辑。 Within software engineering. programming (the implementation) is regarded as one phase in a software development process. Whatever the approach to software development maybe, the final program must satisfy some fundamental properties. The following properties are among the most
4、relevant:在软件工程。编程(实现)被认为是软件开发过程中的一个阶段。无论软件开发方法也许,最后程序必须满足一些基本性质。以下属性是最相关的: Efficiency/performance: the amount of system resources a program consumes (processor time. memory space. slow devices such as disks. network bandwidth and to some extent even user interaction): the less. the better. This also
5、 includes correct disposal of some resources, such as cleaning up temporary files and lack of memory leaks. 效率/性能:程序消耗的系统资源(处理器时间。内存空间。缓慢的设备(如磁盘。网络带宽和在某种程度上甚至用户交互):。越好。这也包括一些资源的正确处理,如清理临时文件和内存泄漏的缺乏。 Reliability: how often the results of a program are correct. This depends on conceptual correctness o
6、f algorithms. and minimization of programming mistakes. such as mistakes in resource management (e. g., buffer overflows and race conditions) and logic errors (such as division by zero or off-by-one errors).可靠性:多长时间程序的结果是正确的。这取决于概念算法的正确性。和最小化的编程错误。在资源管理(e . g等错误。、缓冲区溢出和竞争条件)和逻辑错误(如“从一开始”除零个或错误)。 Rob
7、ustness: how well a program anticipates problems not due to programmer error. This includes situations such as incorrect. inappropriate or corrupt data. unavailability of needed resources such as memory. operating system services and network connections, and user error.鲁棒性:程序如何预测问题不是由于程序员的错误。这包括情况如不
8、正确的。不恰当的或腐败的数据。不可用所需的资源,如内存。操作系统服务和网络连接和用户错误。 usability: the ergonomics of a program: the ease with which a person can use the program for its intended purpose. or in some cases even unanticipated purposes. Such issues can make or break its success even regardless of other issues. This involves a wi
9、de range of textual, graphical and sometimes hardware elements that improve the clarity, intuitiveness, cohesiveness and completeness of a programs user interface.可用性:程序的人体工程学的一个人可以使用程序的目的。甚至在某些情况下意外的目的。这类问题可以使或打破它的成功甚至不管其他问题。这涉及到广泛的文本、图形和有时硬件元素,提高清晰度,直觉,凝聚力和完整性的程序的用户界面。portability: the range of com
10、puter hardware and operating system platforms on which the source code of a program can be compiled interpreted and run. this depends on differences in the programming facilities provided by the different platforms, including hardware and operating system resources. expected behavior of the hardware
11、 and operating system. and availability of platform specific compilers and sometimes libraries) for the language of the source code.可移植性:计算机硬件和操作系统平台的范围,程序可以被编译的源代码解释和运行。这取决于不同的编程设施所提供的不同的平台,包括硬件和操作系统资源。硬件和操作系统的预期行为。和可用性的特定于平台的编译器有时库)的语言源代码。Maintainability: the ease with which a program can be modif
12、ied by its present or future developers in order to make improvements or customizations. fix bugs and security holes. or adapt it to new environments. Good practices during initial development make the difference in this regard. This quality may not be directly apparent to the end user but it can si
13、gnificantly affect the au of a program over the long term.可维护性:可以修改的程序由其现在或将来的开发人员为了改进或定制。修复bug和安全漏洞。或者它适应新的环境。在初始开发最佳实践在这方面的差异。这个质量可能没有直接明显的给最终用户,但可以显著影响非盟的长期计划。In computer programming. readability of the source code refers to the ease with which I human reader can comprehend the purpose. control f
14、low. and operation of source code. It affects the aspects of quality above. including portability. usability and most importantly maintainability. Readability is important because programmers spend the majority of their time reading. trying to understand and modifying existing source code. rather th
15、an writing new source code. Unreadable code often leads to bugs. inefficiencies. and duplicated code. A study found that a few simple readability transformations made code shorter and dra51ically reducedthe time to understand it.在计算机编程。源代码的可读性是指的我人类读者可以理解的目的。控制流。和操作的源代码。它会影响上述方面的质量。包括可移植性。可用性和最重要的可维
16、护性。可读性很重要,因为程序员把大多数时间花在阅读上。试着理解和修改现有的源代码。而不是编写新的源代码。不可读的代码通常会导致错误。低效率。和重复代码。一项研究发现,一些简单的转换使代码可读性较短和dra51ically减少时间去理解它。Following a consistent programming style often helps readability. However. Readability is more than just programming style. Many factors contribute to readability. Some of these fac
17、tors include:遵循一个一致的编程风格经常帮助可读性。然而。可读性不仅仅是编程风格。许多因素导致可读性。这些因素包括:Different indentation styles (whitespace) 不同的缩进风格(空白)Comments评论Decomposition分解Naming conventions for objects (such as variables,. Procedures, etc) 对象的命名约定(如变量。程序等)The academic field and the engineering practice of computer programming a
18、re both largely concerned with discovering and implementing the most efficient algorithms for a given class of problem. For this purpose, algorithms are classified into orders using so-called Big 0 notation. 0 ( 0). which expresses resource use, such as execution time or memory consumption. in terms
19、 of the size of an input. Expert programmers are familiar with a variety of well-established algorithms and their respective complexities and USE this knowledge to choose algorithms that are best suited to the circumstances.学术领域和计算机编程的工程实践都是主要关心的发现和实现最有效的算法对于一个给定的类的问题。为了这个目的,算法分为订单使用所谓的大0符号。0(0)表达资源
20、的使用,如执行时间和内存消耗。一个输入的大小。专家程序员熟悉各种行之有效的算法和各自的复杂性和使用这些知识来选择算法最适合的环境。Different programming languages support different styles of programming ( called programming paradigms). The choice of language used is subject to many considerations. Ideally, the programming language best suited for the task at hand
21、will be selected.不同的编程语言支持不同风格的编程(称为编程范例)。语言的选择是受许多因素。理想情况下,编程语言最适合手头的任务将被选中。It is very difficult to determine what are the most popular of modern programming languages. Some languages are very popular for particular kinds of applications (e. g., COBOL is still strong in the corporate data center. o
22、ften on large mainframe, FORTRAN in engineering applications. Scripting languages in web development. and C in embedded applications). while some languages are regularly used to write many different kinds of applications. Also many applications use a mix of several languages in their construction an
23、d use.很难确定哪些是最受欢迎的现代编程语言。有些语言是非常流行的对于特定类型的应用程序(e . g。COBOL依然强劲的企业数据中心。经常在大型主机,FORTRAN在工程应用中。web开发的脚本语言。在嵌入式应用程序和C)。虽然有些语言经常写许多不同种类的应用程序使用。也许多应用程序使用一个混合的几种语言建设和使用。Many computer languages provide a mechanism to call functions provided by libraries such as in. dlls. Provided the functions in a library
24、follow the appropriate run time conventions (e.g., method of passing arguments), then these functions may be written in any other language.许多计算机语言提供一个机制来调用库提供的功能等。dll。提供的功能在图书馆遵循相应的运行时约定(如。这些函数,方法的参数),那么可以用其他语言编写。 Debugging is a very important task in the software development process, because an inc
25、orrect program can have significant consequences for its users. Some languages are more prone to some kinds of faults because their specification does not require compilers to perform as much checking as other languages. Use of a static analysis tool can help detect some possible problems. 调试是一个非常重要
26、的任务在软件开发过程中,因为一个不正确的程序可以对用户产生重大影响。有些语言更倾向于某些类型的错误,因为他们的规范不需要编译器执行检查和其他语言一样多。使用静态分析工具可以帮助发现一些可能的问题。计算机编程(通常缩短编程或编码)设计的过程。编写和调试计算机程序的源代码。这个源代码是用编程语言编写的。编程的目的是创建一个程序,展示一定的预期行为。编写源代码的过程通常需要专业知识在很多不同的科目。包括应用程序域的知识,专门的算法和形式逻辑。在软件工程。编程(实现)被认为是软件开发过程中的一个阶段。无论软件开发方法也许,最后程序必须满足一些基本性质。以下属性是最相关的:效率/性能:程序消耗的系统资源
27、(处理器时间。内存空间。缓慢的设备(如磁盘。网络带宽和在某种程度上甚至用户交互):。越好。这也包括一些资源的正确处理,如清理临时文件和内存泄漏的缺乏可靠性:多长时间程序的结果是正确的。这取决于概念算法的正确性。和最小化的编程错误。在资源管理(e . g等错误。、缓冲区溢出和竞争条件)和逻辑错误(如“从一开始”除零个或错误)。鲁棒性:程序如何预测问题不是由于程序员的错误。这包括情况如不正确的。不恰当的或腐败的数据。不可用所需的资源,如内存。操作系统服务和网络连接和用户错误。可用性:程序的人体工程学的一个人可以使用程序的目的。甚至在某些情况下意外的目的。这类问题可以使或打破它的成功甚至不管其他问题。这涉及到广泛的文本、图形和有时硬件元素,提高清晰度,直觉,凝聚力和完整性的程序的用户界面。可移植性:计算机硬件和操作系统平台的范围,程序可以被编译的源代码解释和运行。这取决于不同的编程设施所提供的不同的平台,包括硬件和操作系统资源。硬件和操作系统的预期行为。和可用性的特定于平台的编译器有时库)的语言源代码
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2025签订购房合同注意事项全面解析
- 人力资源服务平台合同样本
- 2025年秘鲁玛卡项目发展计划
- 房屋拆迁合同模板
- 担保公司四方借款合同
- 付款三方协议建筑合同样本
- 保修协议书范例
- 二零二五版勘探服务合同
- 教师聘任合同二零二五年
- 车辆展厅出租合同范例
- 19S406建筑排水管道安装-塑料管道
- KA-T 20.1-2024 非煤矿山建设项目安全设施设计编写提纲 第1部分:金属非金属地下矿山建设项目安全设施设计编写提纲
- 绿色生活实践
- (2024年)硫化氢安全培训课件
- 《聚焦超声治疗》课件
- 2023-2024学年高一下学期第一次月考(湘教版2019)地理试题(解析版)
- 妇科炎症介绍演示培训课件
- 如康家园管理制度
- 蓄水池工程施工工艺与技术措施
- 2022年4月自考00149国际贸易理论与实务试题及答案含评分标准
- 大数据驱动的药物研发
评论
0/150
提交评论