复习C++

作者: LexieMIZUKI | 来源:发表于2019-08-04 19:06 被阅读0次

    1)定义常量用: #defineconst;
    2)类似java里面的类的概念,后面的book是变量:

    struct Books
    {
    char title[50];
    char author[50];
    char subject[100];
    int book_id;
    } book;

    3)c++中的继承表达:

    // 基类
    class Shape {
    public:
    void setWidth(int w) {
    width = w;
    }
    void setHeight(int h){
    height = h;
    }
    protected:
    int width;
    int height;
    };
    // 派生类
    class Rectangle: public Shape{
    public:
    int getArea(){
    return (width * height);
    }
    };

    4)运算符重载,就是是原来的运算符具有的功能多元化。
    普通的用this来引用,友元用的是变量(或对象)去引用。

    参考链接:https://www.runoob.com/cplusplus/cpp-inheritance.html

    相关文章

      网友评论

          本文标题:复习C++

          本文链接:https://www.haomeiwen.com/subject/qexydctx.html