c中class的用法
c中class的用法的用法你知道吗?下面小编就跟你们详细介绍下c中class的用法的用法,希望对你们有用。
c中class的用法的用法如下:
学习啦在线学习网 Struct和Class的区别
学习啦在线学习网 今天这篇博文主要讲解在C++中关键字struct和class的区别。这篇博文,将会系统的将这两个关键字的不同面进行详细的讲解。
学习啦在线学习网 从语法上来讲,class和struct做类型定义时只有两点区别:
学习啦在线学习网 1.默认继承权限,如果不指定,来自class的继承按照private继承处理,来自struct的继承按照public继承处理;
学习啦在线学习网 2.成员的默认访问权限。class的成员默认是private权限,struct默认是public权限。以上两点也是struct和class最基本的差别,也是最本质的差别;
但是在C++中,struct进行了扩展,现在它已经不仅仅是一个包含不同数据类型的数据结构了,它包括了更多的功能。
Struct能包含成员函数吗?
是的,答案是肯定的。现在就让我写一段代码验证一下:
复制代码 代码如下:
/*
学习啦在线学习网 ** FileName : StructAndClassDiffDemo
** Author : Jelly Young
学习啦在线学习网 ** Date : 2013/12/7
** Description : More information, please go to http://www.jb51.net
*/
#include <iostream>
学习啦在线学习网 using namespace std;
struct Test
{
int a;
int getA()
{
学习啦在线学习网 return a;
}
void setA(int temp)
{
a = temp;
}
};
学习啦在线学习网 int main(int argc, char* argv[])
{
学习啦在线学习网 Test testStruct;
testStruct.setA(10);
cout<<"Get the value from struct:"<<testStruct.getA()<<endl;
Test *testStructPointer = new Test;
testStructPointer->setA(20);
cout<<"Get the value from struct again:"<<testStructPointer->getA()<<endl;
学习啦在线学习网 delete testStructPointer;
return 0;
}
以上的代码会很正确的运行,是的;没错,struct能包含成员函数的。
学习啦在线学习网 Struct有自己的构造函数吗?
是的,可以的。看以下测试代码:
复制代码 代码如下:
/*
** FileName : StructAndClassDiffDemo
** Author : Jelly Young
学习啦在线学习网 ** Date : 2013/12/7
** Description : More information, please go to http://www.jb51.net
*/
#include <iostream>
using namespace std;
学习啦在线学习网 struct Test
{
int a;
Test()
{
学习啦在线学习网 a = 100;
}
int getA()
{
return a;
}
void setA(int temp)
{
学习啦在线学习网 a = temp;
}
};
学习啦在线学习网 int main(int argc, char* argv[])
{
Test testStruct;
学习啦在线学习网 testStruct.setA(10);
学习啦在线学习网 cout<<"Get the value from struct:"<<testStruct.getA()<<endl;
Test *testStructPointer = new Test;
testStructPointer->setA(20);
学习啦在线学习网 cout<<"Get the value from struct again:"<<testStruct.getA()<<endl;
学习啦在线学习网 delete testStructPointer;
// test the constructor
Test testConstructor;
cout<<"Set the value by the construct and get it:"<<testConstructor.getA()<<endl;
return 0;
}
学习啦在线学习网 Struct可以有析构函数么?
让我来验证一下:
复制代码 代码如下:
/*
学习啦在线学习网 ** FileName : StructAndClassDiffDemo
** Author : Jelly Young
学习啦在线学习网 ** Date : 2013/12/7
** Description : More information, please go to http://www.jb51.net
*/
#include <iostream>
using namespace std;
struct Test
{
int a;
Test()
{
a = 100;
}
int getA()
{
学习啦在线学习网 return a;
}
学习啦在线学习网 void setA(int temp)
{
学习啦在线学习网 a = temp;
}
~Test()
{
cout<<"Destructor function called."<<endl;
}
};
int main(int argc, char* argv[])
{
学习啦在线学习网 Test testStruct;
testStruct.setA(10);
学习啦在线学习网 cout<<"Get the value from struct:"<<testStruct.getA()<<endl;
Test *testStructPointer = new Test;
testStructPointer->setA(20);
学习啦在线学习网 cout<<"Get the value from struct again:"<<testStruct.getA()<<endl;
delete testStructPointer;
// test the constructor
学习啦在线学习网 Test testConstructor;
cout<<"Set the value by the construct and get it:"<<testConstructor.getA()<<endl;
return 0;
}
是的,完全支持析构函数。
Struct支持继承么?
再让我写代码验证一下:
学习啦在线学习网 复制代码 代码如下:
/*
** FileName : StructAndClassDiffDemo
** Author : Jelly Young
学习啦在线学习网 ** Date : 2013/12/7
** Description : More information, please go to http://www.jb51.net
*/
#include <iostream>
学习啦在线学习网 using namespace std;
struct A
{
int a;
A()
{
a = 10;
}
学习啦在线学习网 void print()
{
cout<<"I am from A"<<endl;
}
};
struct B : A
{
int b;
B()
{
a = 30; // set a to 30
b = 20;
}
学习啦在线学习网 /*void print()
{
cout<<"I am from B"<<endl;
}*/
};
学习啦在线学习网 int main(int argc, char* argv[])
{
B b1;
cout<<b1.a<<endl;
学习啦在线学习网 cout<<b1.b<<endl;
b1.print();
A a1;
cout<<a1.a<<endl;
a1.print();
return 0;
}
学习啦在线学习网 运行上述代码,struct支持继承。
Struct支持多态么?
写代码测试一下便知:
复制代码 代码如下:
/*
学习啦在线学习网 ** FileName : StructAndClassDiffDemo
** Author : Jelly Young
学习啦在线学习网 ** Date : 2013/12/7
** Description : More information, please go to http://www.jb51.net
*/
#include <iostream>
学习啦在线学习网 using namespace std;
struct A
{
virtual void print() = 0;
};
学习啦在线学习网 struct B : A
{
学习啦在线学习网 void print()
{
cout<<"I am from B"<<endl;
}
};
struct C : A
{
学习啦在线学习网 void print()
{
学习啦在线学习网 cout<<"I am from C"<<endl;
}
};
int main(int argc, char* argv[])
{
A *a1;
B *b1 = new B;
C *c1 = new C;
学习啦在线学习网 a1 = b1;
学习啦在线学习网 a1->print(); // call B, not A
学习啦在线学习网 a1 = c1;
学习啦在线学习网 a1->print(); // call C, not A
学习啦在线学习网 return 0;
}
Struct支持Private、Protected和Public关键字么?
学习啦在线学习网 复制代码 代码如下:
/*
学习啦在线学习网 ** FileName : StructAndClassDiffDemo
** Author : Jelly Young
学习啦在线学习网 ** Date : 2013/12/7
学习啦在线学习网 ** Description : More information, please go to http://www.jb51.net
*/
学习啦在线学习网 #include <iostream>
学习啦在线学习网 using namespace std;
学习啦在线学习网 struct A
{
private:
int b;
protected:
int c;
public:
A()
{
b = 10;
c = 20;
d = 30;
}
int d;
};
struct B : A
{
void printA_C()
{
cout<<A::c<<endl;
};
// private member can not see
学习啦在线学习网 /*void printA_B()
{
cout<<A::b<<endl;
}*/
void printA_D()
{
cout<<A::d<<endl;
}
};
int main(int argc, char* argv[])
{
A a1;
B b1;
学习啦在线学习网 // private member can not see
//cout<<a1.b<<endl;
学习啦在线学习网 // protected member can not see
学习啦在线学习网 //cout<<a1.c<<endl;
学习啦在线学习网 // public member can see
cout<<a1.d<<endl;
return 0;
}