In C++ how is function overloading typically implemented?

后端 未结 8 1931
醉酒成梦
醉酒成梦 2020-12-09 04:07

If there is no function overloading, the function name serves as the address of the function code, and when a function is being called, its address is easy to find using its

8条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-09 04:49

    The function signature is composed of the function name + parameter(s) type(s)

提交回复
热议问题