摘要: 应对复杂性的能力不同。 我们知道现在存在着两种不同的编程方式-1) 面向过程编程(POP)以及2)面向对象编程。我们可以任意选择一种方式来编写程序,但是我们得知道这两种编程方式的区别。这两种编程方式是软件开发历经几十年发展的结果。从计算机被发明起,人们尝试了很多方法来编写程序,例如a)自顶向下编程; 阅读全文
posted @ 2018-01-12 20:05 zzfx 阅读(535) 评论(0) 推荐(0)
摘要: Main paradigm approaches[edit] The following are widely considered the main programming paradigms, as seen when measuring programming language popular 阅读全文
posted @ 2018-01-12 20:00 zzfx 阅读(477) 评论(0) 推荐(0)
摘要: In computer science, functional programming is a programming paradigm—a style of building the structure and elements of computer programs—that treats  阅读全文
posted @ 2018-01-12 19:56 zzfx 阅读(308) 评论(0) 推荐(0)
摘要: n computer science, reflection is the ability of a computer program to examine, introspect, and modify its own structure and behavior at runtime.[1] A 阅读全文
posted @ 2018-01-12 19:55 zzfx 阅读(422) 评论(0) 推荐(0)
摘要: Generic programming is a style of computer programming in which algorithms are written in terms of types to-be-specified-later that are then instantia 阅读全文
posted @ 2018-01-12 17:05 zzfx 阅读(251) 评论(0) 推荐(0)
摘要: 声明式编程需要底层或运行时环境支持。 声明式语言的关键词确定了执行的关键控制流。 表述编程语言是说明性的东西;而不是具体的执行方案。 通常他的执行由解释器进行。 In computer science, declarative programming is a programming paradig 阅读全文
posted @ 2018-01-12 15:59 zzfx 阅读(508) 评论(0) 推荐(0)
摘要: 编程范式(Programming Paradigm)是某种编程语言典型的编程风格或者说是编程方式。随着编程方法学和软件工程研究的深入,特别是OO思想的普及,范式(Paradigm)以及编程范式等术语渐渐出现在人们面前。面向对象编程(OOP)常常被誉为是一种革命性的思想,正因为它不同于其他的各种编程范 阅读全文
posted @ 2018-01-12 15:34 zzfx 阅读(1159) 评论(0) 推荐(0)
摘要: Different approaches to programming have developed over time, being identified as such either at the time or retrospectively. An early approach consci 阅读全文
posted @ 2018-01-12 14:51 zzfx 阅读(305) 评论(0) 推荐(0)
摘要: 软件问题对象的问题: 1)业务逻辑的复杂型; 2)软件组件的规模; 软件复杂度的升级:一维线性(单纯计算);二维平面(带有业务逻辑的结构型计算);三维立体:描述复杂的现实世界; 针对软件开发任务的升级,编程思想也有一个相应的升级过程: 编程思想的进化; 1)面向计算:计算机出现的驱动力,具有唯一解; 阅读全文
posted @ 2018-01-12 11:25 zzfx 阅读(205) 评论(0) 推荐(0)
摘要: 结构话编程强调的是对流程的控制; 它为面向过程编程提供天然的支持。 Structured programming is a programming paradigm aimed at improving the clarity, quality, and development time of a  阅读全文
posted @ 2018-01-12 11:07 zzfx 阅读(852) 评论(0) 推荐(0)