Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Composite design pattern = polymorphism?

Composite design pattern = polymorphism?

Scheduled Pinned Locked Moved C#
csharpdesignregexooparchitecture
3 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • D Offline
    D Offline
    DK KiloDunse
    wrote on last edited by
    #1

    I’m studying computer programming, and I’m a little puzzled by the Composite design pattern. In "Design Patterns in C#" by Steven John Metsker, Addison-Wesley, it says: COMPOSITE lets clients treat individual objects and compositions of objects uniformly. And in "Programming C#", O'Reilly, it says about polymorphism: Thus, polymorphism refers to being able to use many forms of a type without regards to the details. Is this not one and the same thing?

    Programming is like Mathematics… you take ONE step at the time! ;-)

    CPalliniC D 2 Replies Last reply
    0
    • D DK KiloDunse

      I’m studying computer programming, and I’m a little puzzled by the Composite design pattern. In "Design Patterns in C#" by Steven John Metsker, Addison-Wesley, it says: COMPOSITE lets clients treat individual objects and compositions of objects uniformly. And in "Programming C#", O'Reilly, it says about polymorphism: Thus, polymorphism refers to being able to use many forms of a type without regards to the details. Is this not one and the same thing?

      Programming is like Mathematics… you take ONE step at the time! ;-)

      CPalliniC Offline
      CPalliniC Offline
      CPallini
      wrote on last edited by
      #2

      Polymorphism is one pillar of the OOP paradigm. Composite is a design pattern, i.e. a very good solution to a well known problem. I think you have to learn more about both OOP and design pattern techniques. :)

      If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.

      In testa che avete, signor di Ceprano?

      1 Reply Last reply
      0
      • D DK KiloDunse

        I’m studying computer programming, and I’m a little puzzled by the Composite design pattern. In "Design Patterns in C#" by Steven John Metsker, Addison-Wesley, it says: COMPOSITE lets clients treat individual objects and compositions of objects uniformly. And in "Programming C#", O'Reilly, it says about polymorphism: Thus, polymorphism refers to being able to use many forms of a type without regards to the details. Is this not one and the same thing?

        Programming is like Mathematics… you take ONE step at the time! ;-)

        D Offline
        D Offline
        Daniel Grunwald
        wrote on last edited by
        #3

        Polymorphism: being able to treat a car as an vehicle - using a base class reference to call virtual methods. Composite: making a car of individual parts (motor etc.) and being able to treat both the motor and the whole car the same, e.g. calling Repair() on them. The Composite pattern uses polymorphism (as most design patterns do), but it isn't the same thing.

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups