上一页 1 ··· 73 74 75 76 77 78 79 80 81 ··· 102 下一页
摘要: 所谓的多态是将类似的不同实现统一到一个(组)接口的能力; 涉及到两个方面:1)抽象能力;2)面向接口(忽略载体、对象)。 Polymorphism is the ability of the programmer to write methods of the same name that do d 阅读全文
posted @ 2018-01-17 16:50 zzfx 阅读(191) 评论(0) 推荐(0)
摘要: Smalltalk is an object-oriented, dynamically typed, reflective programming language. Smalltalk was one of many object-oriented programming languages b 阅读全文
posted @ 2018-01-17 15:13 zzfx 阅读(406) 评论(0) 推荐(0)
摘要: Simula is the name of two simulation programming languages, Simula I and Simula 67, developed in the 1960s at the Norwegian Computing Center in Oslo, 阅读全文
posted @ 2018-01-17 14:49 zzfx 阅读(188) 评论(0) 推荐(0)
摘要: 决断、定论与执行力 当断不断的意思就是优柔寡断,该做决定的时候不做决定。 排除万难来执行; 悬而不决; 夜长梦多; 阅读全文
posted @ 2018-01-17 11:10 zzfx 阅读(1676) 评论(0) 推荐(0)
摘要: •<!--StartFragment-->需求、需求评审与产品定位<!--EndFragment--> 需求与产品定位:略; 需求评审中的问题:双向交互与自圆其说 •需求的增与减; •需求变更; •干扰与目标定力; •目标、计划、时间与选择; •移动端工作量评估的考虑因素; •时间倒排、项目规模、领 阅读全文
posted @ 2018-01-17 10:57 zzfx 阅读(446) 评论(0) 推荐(0)
摘要: 对于新人来说,JavaScript的原型是一个很让人头疼的事情,一来prototype容易与__proto__混淆,二来它们之间的各种指向实在有些复杂,其实市面上已经有非常多的文章在尝试说清楚,有一张所谓很经典的图,上面画了各种线条,一会连接这个一会连接那个,说实话我自己看得就非常头晕,更谈不上完全 阅读全文
posted @ 2018-01-16 21:52 zzfx 阅读(340) 评论(0) 推荐(0)
摘要: http://www.iconfont.cn/home/index?spm=a313x.7781069.1998910419.2 阅读全文
posted @ 2018-01-16 20:22 zzfx 阅读(239) 评论(0) 推荐(0)
摘要: 你可能听说过函数式编程(Functional programming),甚至已经使用了一段时间。 但是,你能说清楚,它到底是什么吗? 网上搜索一下,你会轻松找到好多答案。 与面向对象编程(Object-oriented programming)和过程式编程(Procedural programmin 阅读全文
posted @ 2018-01-16 10:50 zzfx 阅读(891) 评论(0) 推荐(1)
摘要: In computer science, imperative programming is a programming paradigm that uses statements that change a program's state. In much the same way that th 阅读全文
posted @ 2018-01-15 22:01 zzfx 阅读(231) 评论(0) 推荐(0)
摘要: Aspect Oriented Programming(面向方面编程,简称AOP)是一种Declarative Programming(声明式编程)。Declarative Programming(声明式编程)是和Imperative Programming(命令式编程)相对的概念。我们平时使用的编 阅读全文
posted @ 2018-01-15 21:59 zzfx 阅读(297) 评论(0) 推荐(1)
摘要: Object-oriented programming (OOP) is a programming paradigm based on the concept of "objects", which may contain data, in the form of fields, often kn 阅读全文
posted @ 2018-01-15 21:26 zzfx 阅读(218) 评论(0) 推荐(0)
摘要: Prototype-based programming is a style of object-oriented programming in which behaviour reuse (known as inheritance) is performed via a process of re 阅读全文
posted @ 2018-01-15 21:11 zzfx 阅读(207) 评论(0) 推荐(0)
摘要: 范式:编程模式,将数据和算法封装到一起; 思想:系统论和世界观:系统是一系列相互关联的对象组成的。 阅读全文
posted @ 2018-01-15 20:08 zzfx 阅读(161) 评论(0) 推荐(0)
摘要: 拉姆达值(Lambda),希腊字母表示为Λ,指与真空的空间有关的能量或暗能量。 代表转换的常量、或者转换本身。 Lambda 表达式 Lambda 表达式”是一个匿名函数,可以包含表达式和语句,并且可用于创建委托或表达式目录树类型。 所有 Lambda 表达式都使用 Lambda 运算符 =>;,该 阅读全文
posted @ 2018-01-15 18:08 zzfx 阅读(476) 评论(0) 推荐(0)
摘要: In computer science, a function or expression is said to have a side effect if it modifies some state outside its scope or has an observable interacti 阅读全文
posted @ 2018-01-15 17:41 zzfx 阅读(365) 评论(0) 推荐(0)
摘要: 变量可以作为函数的参量和返回值,代表的数据(相对应的是算法); 指针可以作为函数的参量和返回值,代表的是内存;(指针可以无差别的访问任何内存); 对象可以作为函数的参量和返回值,代表的是数据和操作;或者说是操作及其数据上下文。 对象作为参量和返回值,传递的是数据和操作的结合;优与传递数据和指针; 函 阅读全文
posted @ 2018-01-14 11:56 zzfx 阅读(403) 评论(0) 推荐(0)
摘要: 应对复杂性的能力不同。 我们知道现在存在着两种不同的编程方式-1) 面向过程编程(POP)以及2)面向对象编程。我们可以任意选择一种方式来编写程序,但是我们得知道这两种编程方式的区别。这两种编程方式是软件开发历经几十年发展的结果。从计算机被发明起,人们尝试了很多方法来编写程序,例如a)自顶向下编程; 阅读全文
posted @ 2018-01-12 20:05 zzfx 阅读(538) 评论(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 阅读(479) 评论(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 阅读(310) 评论(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 阅读(426) 评论(0) 推荐(0)
上一页 1 ··· 73 74 75 76 77 78 79 80 81 ··· 102 下一页