类的对象用法

/*
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() < cout << name.end() <

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

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

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

你可能感兴趣的:(类的对象用法)