What is runtime binding?

前端 未结 4 976
广开言路
广开言路 2021-02-09 03:58

I\'m going through the android development training docs and stumbled upon this:

\"An Intent is an object that provides runtime binding between separate

4条回答
  •  无人及你
    2021-02-09 04:00

    Runtime binding is the same thing as dynamic binding or late binding. Dynamic binding basically means that the method implementation that is actually called is determined at run-time, and not at compile-time. And that’s why it’s called dynamic binding – because the method that will be run is chosen at run time.

提交回复
热议问题