Results 1 to 6 of 6

Thread: What is Object Oriented Programming?

  1. #1
    Join Date
    Apr 2015
    Location
    United Kingodm
    Posts
    51

    Default What is Object Oriented Programming?

    Hello Friends,

    Please tell me what is object oriented programming.

  2. #2
    Join Date
    Jun 2013
    Location
    Forum
    Posts
    2,096

    Default

    Object-oriented programming (OOP) is a programming language model organized around objects rather than "actions" and data rather than logic. Historically, a program has been viewed as a logical procedure that takes input data, processes it, and produces output data.
    Cheap VPS Hosting | $1 VPS Hosting
    Windows VPS Hosting | Windows with Remote Desktop Access
    Cheap Dedicated Servers | Linux Dedicated Server Hosting

  3. #3
    Join Date
    Dec 2012
    Posts
    392

    Default

    Object-oriented programming (OOP) is a programming paradigm based on the concept of "objects", which may contain data, in the form of fields, often known as attributes; and code, in the form of procedures, often known as methods.

  4. #4
    Join Date
    Jun 2016
    Location
    India
    Posts
    102

  5. #5
    Join Date
    Feb 2016
    Location
    CA
    Posts
    381

    Default

    Its better known as oops, a programming language used in Java.

  6. #6
    Join Date
    Apr 2020
    Posts
    704

    Default

    The ones I actually use:

    Objects have behaviours, not data. That’s encapsulation done right. Private data exists to support behaviour that depends on data
    Program to interfaces that must always be valid. That’s polymorphism used to implement abstractions
    Tell don’t ask. Restatement of the first point
    Prefer composition over inheritance. Quite opposite to the normal associations to inheritance, which I hardly ever use
    What most teaching tells you is PIE polymorphism, inheritance, encapsulation. I don’t find that as relevant in practice.

Similar Threads

  1. What is your preffered programming language on the web?
    By dora675 in forum Web Design Solutions
    Replies: 28
    Last Post: 04-25-2023, 01:17 PM
  2. performance oriented host
    By Youngman in forum Web Hosting Solutions
    Replies: 8
    Last Post: 01-28-2016, 11:38 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •