美文网首页
类的对象用法

类的对象用法

作者: LuckTime | 来源:发表于2016-06-18 09:56 被阅读8次

    /*
    class name
    {
    int a;
    int b;
    int c;
    };
    //
    int main() //还不会用的一些技巧
    {
    string name; //string 是类
    name ="hello";
    cout << name.size()<< endl; //strlen
    string cin;
    cin.getline(name,5);
    cout << name.c_str() <<endl;
    cout << name.end() <<endl;

    }
    //-------------------------

    strcpy(地址,串)
    strcat(旧串,附加穿)
    strcmp(串1,串2)
    getline 。。。。。。。。。。。会生成一个包含一串从输入流读入的字符的字符串,直到以下情况发生会导致生成的此字符串结束
    */

    //无名对象 类 (数);
    //继承:class Child :public person{};
    //覆盖,子类中含有和父类同名函数时,覆盖父类的函数。
    //多重继承:子类继承所有父类函数。 class child :public person,public men{}
    //虚继承 class child :virtual person{}
    //写一个无法继承的类、(需要用到友元函数)

    相关文章

      网友评论

          本文标题:类的对象用法

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