What is a Class and Object in C++?

前端 未结 20 997
走了就别回头了
走了就别回头了 2020-12-09 10:33

What is a Class and Object in C++?

Can we say that a Class is an Object?

20条回答
  •  一个人的身影
    2020-12-09 11:03

    Object is an data or a function which has an adress in run time memory and are also called as instances of class . Thus object is an class type variable or entity of c++ programming language.

提交回复
热议问题