Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 62289
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T18:27:09+00:00 2026-05-10T18:27:09+00:00

…or are they the same thing? I notice that each has its own Wikipedia

  • 0

…or are they the same thing? I notice that each has its own Wikipedia entry: Polymorphism, Multiple Dispatch, but I’m having trouble seeing how the concepts differ.

Edit: And how does Overloading fit into all this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T18:27:10+00:00Added an answer on May 10, 2026 at 6:27 pm

    Polymorphism is the facility that allows a language/program to make decisions during runtime on which method to invoke based on the types of the parameters sent to that method.

    The number of parameters used by the language/runtime determines the ‘type’ of polymorphism supported by a language.

    Single dispatch is a type of polymorphism where only one parameter is used (the receiver of the message – this, or self) to determine the call.

    Multiple dispatch is a type of polymorphism where in multiple parameters are used in determining which method to call. In this case, the reciever as well as the types of the method parameters are used to tell which method to invoke.

    So you can say that polymorphism is the general term and multiple and single dispatch are specific types of polymorphism.

    Addendum: Overloading happens during compile time. It uses the type information available during compilation to determine which type of method to call. Single/multiple dispatch happens during runtime.

    Sample code:

    using NUnit.Framework;  namespace SanityCheck.UnitTests.StackOverflow {     [TestFixture]     public class DispatchTypes     {         [Test]         public void Polymorphism()         {             Baz baz = new Baz();             Foo foo = new Foo();              // overloading - parameter type is known during compile time             Assert.AreEqual('zap object', baz.Zap('hello'));             Assert.AreEqual('zap foo', baz.Zap(foo));               // virtual call - single dispatch. Baz is used.             Zapper zapper = baz;             Assert.AreEqual('zap object', zapper.Zap('hello'));             Assert.AreEqual('zap foo', zapper.Zap(foo));               // C# has doesn't support multiple dispatch so it doesn't             // know that oFoo is actually of type Foo.             //             // In languages with multiple dispatch, the type of oFoo will              // also be used in runtime so Baz.Zap(Foo) will be called             // instead of Baz.Zap(object)             object oFoo = foo;             Assert.AreEqual('zap object', zapper.Zap(oFoo));         }          public class Zapper         {             public virtual string Zap(object o) { return 'generic zapper' ; }             public virtual string Zap(Foo f) { return 'generic zapper'; }         }          public class Baz : Zapper         {             public override string Zap(object o) { return 'zap object'; }             public override string Zap(Foo f) { return 'zap foo'; }         }          public class Foo { }     } } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

so I did $subject = 'sakdlfjsalfdjslfad <a href=something/8230>lol is that true?</a> lalalala'; $subject =
I have this xml <entry id=1008 section=articles> <excerpt><p>&#8230; in Richtung „Aus für Tierversuche. Kosmetik-Fertigprodukte
I have an element like this: <span class=tool_tip title=The full title>The ful&#8230;</span> This seems
Why does the Android system throw this Exception? 05-18 12:33:44.169 W/System.err( 8230): java.io.IOException: Is
I see that some rss on xml have strange strings. For example, ... is
I have a PDB file. Now it has two parts separated by TER. Before
(tl;dr: see summary at the bottom.) I am implementing an application that pulls content
I'm trying to write a script to launch xfce and xbmc in their own
After much research, I have found that Laravel is very nice. I have a
CGI.escapeHTML is pretty bad, but CGI.unescapeHTML is completely borked. For example: require 'cgi' CGI.unescapeHTML('&#8230;')

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.