类和对象
类是对象的抽象,对象的实例化需要依靠类,对象往往能具体到某个object,如张三
类的声明
class Myclass{
};// 这里必须要加分号
这章所有代码: https://github.com/scott-x/cpp_learning/tree/master/oop/constructor
类是对象的抽象,对象的实例化需要依靠类,对象往往能具体到某个object,如张三
class Myclass{
};// 这里必须要加分号
这章所有代码: https://github.com/scott-x/cpp_learning/tree/master/oop/constructor