摘要:
面向对象注意:对对象的操作全都通过函数的实现,而不是直接访问他的成员变量 阅读全文
摘要:
首先一定要有:#include<string.h> 初始化: string s1="asdasd"; string s2("asd"); string s3(s2); string s4(22.'c'); // 22个c构成的字符串 然后可以直接:cout << s << endl; 输入和输出: 阅读全文
摘要:
对象在内存中存储时,可能存的是:虚函数表指针,成员变量。。。(依次往下排) 阅读全文