🗊 Презентация Programming paradigms

Нажмите для полного просмотра!
Programming paradigms, слайд №1 Programming paradigms, слайд №2 Programming paradigms, слайд №3 Programming paradigms, слайд №4 Programming paradigms, слайд №5 Programming paradigms, слайд №6 Programming paradigms, слайд №7 Programming paradigms, слайд №8 Programming paradigms, слайд №9 Programming paradigms, слайд №10 Programming paradigms, слайд №11 Programming paradigms, слайд №12 Programming paradigms, слайд №13 Programming paradigms, слайд №14 Programming paradigms, слайд №15 Programming paradigms, слайд №16 Programming paradigms, слайд №17 Programming paradigms, слайд №18 Programming paradigms, слайд №19 Programming paradigms, слайд №20 Programming paradigms, слайд №21 Programming paradigms, слайд №22 Programming paradigms, слайд №23 Programming paradigms, слайд №24 Programming paradigms, слайд №25 Programming paradigms, слайд №26 Programming paradigms, слайд №27 Programming paradigms, слайд №28

Вы можете ознакомиться и скачать презентацию на тему Programming paradigms. Доклад-сообщение содержит 28 слайдов. Презентации для любого класса можно скачать бесплатно. Если материал и наш сайт презентаций Mypresentation Вам понравились – поделитесь им с друзьями с помощью социальных кнопок и добавьте в закладки в своем браузере.

Слайды и текст этой презентации


Слайд 1


Programming Paradigms
Описание слайда:
Programming Paradigms

Слайд 2


Programming Paradigm A way of conceptualizing what it means to perform computation and how tasks to be carried out on the computer should be...
Описание слайда:
Programming Paradigm A way of conceptualizing what it means to perform computation and how tasks to be carried out on the computer should be structured and organized. Imperative : Machine-model based Functional : Equations; Expression Evaluation Logical : First-order Logic Deduction Object-Oriented : Programming with Data Types

Слайд 3


Imperative vs Non-Imperative Functional/Logic programs specify WHAT is to be computed abstractly, leaving the details of data organization and...
Описание слайда:
Imperative vs Non-Imperative Functional/Logic programs specify WHAT is to be computed abstractly, leaving the details of data organization and instruction sequencing to the interpreter. In constrast, Imperative programs describe the details of HOW the results are to be obtained, in terms of the underlying machine model.

Слайд 4


Illustrative Example Expression (to be computed) : a + b + c Recipe for Computation: Intermediate Code T := a + b; T := T + c; Accumulator Machine...
Описание слайда:
Illustrative Example Expression (to be computed) : a + b + c Recipe for Computation: Intermediate Code T := a + b; T := T + c; Accumulator Machine Load a; Add b; Add c Stack Machine Push a; Push b; Add; Push c; Add

Слайд 5


Imperative vs Non-Imperative Functional/Logic style clearly separates WHAT aspects of a program (programmers’ responsibility) from the HOW aspects...
Описание слайда:
Imperative vs Non-Imperative Functional/Logic style clearly separates WHAT aspects of a program (programmers’ responsibility) from the HOW aspects (implementation decisions). An Imperative program contains both the specification and the implementation details, inseparably inter-twined.

Слайд 6


Procedural vs Functional Program: a sequence of instructions for a von Neumann m/c. Computation by instruction execution. Iteration. Modifiable or...
Описание слайда:
Procedural vs Functional Program: a sequence of instructions for a von Neumann m/c. Computation by instruction execution. Iteration. Modifiable or updateable variables.

Слайд 7


Functional Style : Illustration Definition : Equations sum(0) = 0 sum(n) = n + sum(n-1) Computation : Substituition and Replacement sum(2) = 2 + sum...
Описание слайда:
Functional Style : Illustration Definition : Equations sum(0) = 0 sum(n) = n + sum(n-1) Computation : Substituition and Replacement sum(2) = 2 + sum (2-1) = … = 3

Слайд 8


Paradigm vs Language Imperative Style i := 0; sum := 0; while (i < n) do i := i + 1; sum := sum + i end; Storage efficient
Описание слайда:
Paradigm vs Language Imperative Style i := 0; sum := 0; while (i < n) do i := i + 1; sum := sum + i end; Storage efficient

Слайд 9


Role of Variables Imperative (read/write) i 0 1 2 3 ... sum 0 1 3 6 ... Functional (read only) i1 sum1 i2 sum2 i3 sum3 ...
Описание слайда:
Role of Variables Imperative (read/write) i 0 1 2 3 ... sum 0 1 3 6 ... Functional (read only) i1 sum1 i2 sum2 i3 sum3 ...

Слайд 10


Bridging the Gap Tail recursive programs can be auomatically optimized for space by translating them into equivalent while-loops. func sum(i : int, r...
Описание слайда:
Bridging the Gap Tail recursive programs can be auomatically optimized for space by translating them into equivalent while-loops. func sum(i : int, r : int) : int; if i = 0 then r else sum(i-1, n+r) end Scheme does not have loops.

Слайд 11


Analogy: Styles vs Formalisms Iteration Tail-Recursion General Recursion
Описание слайда:
Analogy: Styles vs Formalisms Iteration Tail-Recursion General Recursion

Слайд 12


Logic Programming Paradigm Integrates Data and Control Structures edge(a,b). edge(a,c). edge(c,a). path(X,X). path(X,Y) :- edge(X,Y). path(X,Y) :-...
Описание слайда:
Logic Programming Paradigm Integrates Data and Control Structures edge(a,b). edge(a,c). edge(c,a). path(X,X). path(X,Y) :- edge(X,Y). path(X,Y) :- edge(X,Z), path(Z,Y).

Слайд 13


Declarative Programming A logic program defines a set of relations. This “knowledge” can be used in various ways by the interpreter to solve...
Описание слайда:
Declarative Programming A logic program defines a set of relations. This “knowledge” can be used in various ways by the interpreter to solve different queries. In contrast, the programs in other languages make explicit HOW the “declarative knowledge” is used to solve the query.

Слайд 14


Append in Prolog append([], L, L). append([ H | T ], L, [ H | R ]) :- append(T, L, R). True statements about append relation. “.” and “:-” are...
Описание слайда:
Append in Prolog append([], L, L). append([ H | T ], L, [ H | R ]) :- append(T, L, R). True statements about append relation. “.” and “:-” are logical connectives that stand for “and” and “if” respectively. Uses pattern matching. “[]” and “|” stand for empty list and cons operation.

Слайд 15


Different Kinds of Queries Verification sig: list x list x list append([1], [2,3], [1,2,3]). Concatenation sig: list x list -> list append([1],...
Описание слайда:
Different Kinds of Queries Verification sig: list x list x list append([1], [2,3], [1,2,3]). Concatenation sig: list x list -> list append([1], [2,3], R).

Слайд 16


More Queries Constraint solving sig: list x list -> list append( R, [2,3], [1,2,3]). sig: list -> list x list append(A, B, [1,2,3]). Generation sig:...
Описание слайда:
More Queries Constraint solving sig: list x list -> list append( R, [2,3], [1,2,3]). sig: list -> list x list append(A, B, [1,2,3]). Generation sig: -> list x list x list append(X, Y, Z).

Слайд 17


Programming paradigms, слайд №17
Описание слайда:

Слайд 18


Object-Oriented Style Programming with Abstract Data Types ADTs specify/describe behaviors. Basic Program Unit: Class Implementation of an ADT....
Описание слайда:
Object-Oriented Style Programming with Abstract Data Types ADTs specify/describe behaviors. Basic Program Unit: Class Implementation of an ADT. Abstraction enforced by encapsulation. Basic Run-time Unit: Object Instance of a class. Has an associated state.

Слайд 19


Procedural vs Object-Oriented Emphasis on procedural abstraction. Top-down design; Step-wise refinement. Suited for programming in the small.
Описание слайда:
Procedural vs Object-Oriented Emphasis on procedural abstraction. Top-down design; Step-wise refinement. Suited for programming in the small.

Слайд 20


Integrating Heterogeneous Data In C, Pascal, etc., use Union Type / Switch Statement Variant Record Type / Case Statement In C++, Java, Eiffel, etc.,...
Описание слайда:
Integrating Heterogeneous Data In C, Pascal, etc., use Union Type / Switch Statement Variant Record Type / Case Statement In C++, Java, Eiffel, etc., use Abstract Classes / Virtual Functions Interfaces and Classes / Dynamic Binding

Слайд 21


Comparison : Figures example Data Square side Circle radius Operation (area) Square side * side Circle PI * radius * radius
Описание слайда:
Comparison : Figures example Data Square side Circle radius Operation (area) Square side * side Circle PI * radius * radius

Слайд 22


Adding a new operation Data ... Operation (area) Operation (perimeter) Square 4 * side Circle 2 * PI * radius
Описание слайда:
Adding a new operation Data ... Operation (area) Operation (perimeter) Square 4 * side Circle 2 * PI * radius

Слайд 23


Adding a new data representation Data ... rectangle length width Operation (area) ... rectangle length * width
Описание слайда:
Adding a new data representation Data ... rectangle length width Operation (area) ... rectangle length * width

Слайд 24


Procedural vs Object-Oriented New operations cause additive changes in procedural style, but require modifications to all existing “class modules” in...
Описание слайда:
Procedural vs Object-Oriented New operations cause additive changes in procedural style, but require modifications to all existing “class modules” in object-oriented style. New data representations cause additive changes in object-oriented style, but require modifications to all “procedure modules”.

Слайд 25


Object-Oriented Concepts Data Abstraction (specifies behavior) Encapsulation (controls visibility of names) Polymorphism (accommodates various...
Описание слайда:
Object-Oriented Concepts Data Abstraction (specifies behavior) Encapsulation (controls visibility of names) Polymorphism (accommodates various implementations) Inheritance (facilitates code reuse) Modularity (relates to unit of compilation)

Слайд 26


Example : Role of interface in decoupling Client Determine the number of elements in a collection. Suppliers Collections : Vector, String, List, Set,...
Описание слайда:
Example : Role of interface in decoupling Client Determine the number of elements in a collection. Suppliers Collections : Vector, String, List, Set, Array, etc Procedual Style A client is responsible for invoking appropriate supplier function for determining the size. OOP Style Suppliers are responsible for conforming to the standard interface required for exporting the size functionality to a client.

Слайд 27


Client in Scheme (define (size C) (cond ( (vector? C) (vector-length C) ) ( (pair? C) (length C) ) ( (string? C) (string-length C) ) ( else “size not...
Описание слайда:
Client in Scheme (define (size C) (cond ( (vector? C) (vector-length C) ) ( (pair? C) (length C) ) ( (string? C) (string-length C) ) ( else “size not supported”) ) )) (size (vector 1 2 (+ 1 2))) (size ‘(one “two” 3))

Слайд 28


Suppliers and Client in Java interface Collection { int size(); } class myVector extends Vector implements Collection { } class myString extends...
Описание слайда:
Suppliers and Client in Java interface Collection { int size(); } class myVector extends Vector implements Collection { } class myString extends String implements Collection { public int size() { return length();} } class myArray implements Collection { int[] array; public int size() {return array.length;} } Collection c = new myVector(); c.size();



Похожие презентации
Mypresentation.ru
Загрузить презентацию