What is a Class and Object in C++?

前端 未结 20 984
走了就别回头了
走了就别回头了 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 10:54

    Class is collection of data and functions,its user defined data type.Class is specification for object.So you can say that object is variable for class or object is instance of class.

提交回复
热议问题