Contents
program basic
What is the difference between a composite data type and a data structure? Data Types and Data Structures
variables
a container(memory address) hold a value;
a variable have a specific type
what is a data type?
具有相同属性的一类数据;
primitive; 基本 compositive:类型 composed of primitive types.
编程范例
Introduction of Programming Paradigms
Differences between Procedural and Object Oriented Programming
什么是编程范例
sytle: 编程语言解决问题或者执行任务的方式; 一门编程语言可能有多个范例;
常见的编程范例
imperative vs declarative
- imperative: 声明一系列方法(控制流程)获取想要的结果 (how to do)
- Decalrative: 声明获取结果的函数,没有中间的流程函数(what to do)
object oriented vs procedural
object oriented | procedural |
---|---|
程序被拆分为一系列对象 | 程序被拆分为一系列方法 |
将 function 和 data放在对象里 | 使用function 操作 data |
object oriented
function
data from function to function to get a retult