c++基本语法
myzts
这个作者很懒,什么都没留下…
展开
-
c++重载[]运算符
#include "iostream"#include using namespace std;class String{public: char s[100]; String(char str[]){ strcpy(s, str); } char operator[](int a)const{ return s[a];原创 2017-05-10 22:07:01 · 271 阅读 · 0 评论 -
c++类的继承:私有继承,公有继承,保护继承
说一下私有成员,公有成员,保护成员的性质:1.公有成员在类外可以通过类直接访问,保护成员和私有成员都不能直接访问#include "iostream"using namespace std;class a{public: int a_public_element;private: int a_private_element;protected: int a原创 2017-05-12 13:29:53 · 630 阅读 · 0 评论 -
c++内联函数
c++内联函数与常规函数的主要区别不在于编写方式,而在于编译器如何将它们组合到程序中.学过编译原理的应该知道,程序调用函数必须原创 2017-05-10 11:52:35 · 344 阅读 · 0 评论