What is dynamic initialization of object in c++?

前端 未结 4 1127
被撕碎了的回忆
被撕碎了的回忆 2020-11-28 07:11

What is dynamic initialization of objects in c++?

Please explain with an simple example...

4条回答
  •  迷失自我
    2020-11-28 07:34

    The dynamic initialization means that the initial values may be provided during run time. Even class objects can be initialized dynamically. I.e. with the values provided at run time. :-))

提交回复
热议问题