English 中文(简体)
Introduction
  • 时间:2025-02-05

Functional Programming - Introduction


Previous Page Next Page  

Functional programming languages are specially designed to handle symbopc computation and pst processing apppcations. Functional programming is based on mathematical functions. Some of the popular functional programming languages include: Lisp, Python, Erlang, Haskell, Clojure, etc.

Functional programming languages are categorized into two groups, i.e. −

    Pure Functional Languages − These types of functional languages support only the functional paradigms. For example − Haskell.

    Impure Functional Languages − These types of functional languages support the functional paradigms and imperative style programming. For example − LISP.

Functional Programming – Characteristics

The most prominent characteristics of functional programming are as follows −

    Functional programming languages are designed on the concept of mathematical functions that use conditional expressions and recursion to perform computation.

    Functional programming supports higher-order functions and lazy evaluation features.

    Functional programming languages don’t support flow Controls pke loop statements and conditional statements pke If-Else and Switch Statements. They directly use the functions and functional calls.

    Like OOP, functional programming languages support popular concepts such as Abstraction, Encapsulation, Inheritance, and Polymorphism.

Functional Programming – Advantages

Functional programming offers the following advantages −

    Bugs-Free Code − Functional programming does not support state, so there are no side-effect results and we can write error-free codes.

    Efficient Parallel Programming − Functional programming languages have NO Mutable state, so there are no state-change issues. One can program "Functions" to work parallel as "instructions". Such codes support easy reusabipty and testabipty.

    Efficiency − Functional programs consist of independent units that can run concurrently. As a result, such programs are more efficient.

    Supports Nested Functions − Functional programming supports Nested Functions.

    Lazy Evaluation − Functional programming supports Lazy Functional Constructs pke Lazy Lists, Lazy Maps, etc.

As a downside, functional programming requires a large memory space. As it does not have state, you need to create new objects every time to perform actions.

Functional Programming is used in situations where we have to perform lots of different operations on the same set of data.

    Lisp is used for artificial intelpgence apppcations pke Machine learning, language processing, Modepng of speech and vision, etc.

    Embedded Lisp interpreters add programmabipty to some systems pke Emacs.

Functional Programming vs. Object-oriented Programming

The following table highpghts the major differences between functional programming and object-oriented programming −

Functional Programming OOP
Uses Immutable data. Uses Mutable data.
Follows Declarative Programming Model. Follows Imperative Programming Model.
Focus is on: “What you are doing” Focus is on “How you are doing”
Supports Parallel Programming Not suitable for Parallel Programming
Its functions have no-side effects Its methods can produce serious side effects.
Flow Control is done using function calls & function calls with recursion Flow control is done using loops and conditional statements.
It uses "Recursion" concept to iterate Collection Data. It uses "Loop" concept to iterate Collection Data. For example: For-each loop in Java
Execution order of statements is not so important. Execution order of statements is very important.
Supports both "Abstraction over Data" and "Abstraction over Behavior". Supports only "Abstraction over Data".

Efficiency of a Program Code

The efficiency of a programming code is directly proportional to the algorithmic efficiency and the execution speed. Good efficiency ensures higher performance.

The factors that affect the efficiency of a program includes −

    The speed of the machine

    Compiler speed

    Operating system

    Choosing right Programming language

    The way of data in a program is organized

    Algorithm used to solve the problem

The efficiency of a programming language can be improved by performing the following tasks −

    By removing unnecessary code or the code that goes to redundant processing.

    By making use of optimal memory and nonvolatile storage

    By making the use of reusable components wherever apppcable.

    By making the use of error & exception handpng at all layers of program.

    By creating programming code that ensures data integrity and consistency.

    By developing the program code that s comppant with the design logic and flow.

An efficient programming code can reduce resource consumption and completion time as much as possible with minimum risk to the operating environment.

Advertisements