Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

Explain the difference between static and dynamic binding?

Pragya Keshap answered on February 4, 2023 Popularity 8/10 Helpfulness 2/10

Contents


More Related Answers

  • static vs dynamic
  • dynamic binding c# example

  • Explain the difference between static and dynamic binding?

    0

    In Static binding references are resolved at compile time. In

    Dynamic binding references are resolved at Run time.

    E.g.

    Person p = new Person();

    p.walk(); // Java compiler resolves this binding at compile time.

    public void walk(Object o){

    ((Person) o).walk(); // this is dynamic binding.

    }

    https://www.geeksforgeeks.org/static-vs-dynamic-binding-in-java/

    Popularity 8/10 Helpfulness 2/10 Language java
    Source: Grepper
    Link to this answer
    Share Copy Link
    Contributed on Feb 04 2023
    Pragya Keshap
    0 Answers  Avg Quality 2/10


    X

    Continue with Google

    By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
    X
    Grepper Account Login Required

    Oops, You will need to install Grepper and log-in to perform this action.