C++中的接口和java接口的区别

在C++中用包括纯虚函数的类来实现interface的功能,

<p:colorscheme colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"> </p:colorscheme>
class client{
ClientInterface& ci;
public:
client(ClientInterface & CI):ci(CI){}
void useServer(){
ci.ServerFunc();
}
};
C++中的接口,他不用事例,只有派生类来实现其功能
********************************
<p:colorscheme colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"> </p:colorscheme>
class ClientInterface{
virtual void ServerFunc()=0;
};
***********************************
class server:public ClientInterface{
int serverData;
public:
void ServerFunc();
};


在java中用关键字interface 来定义接口,在java中的interface 其实就是特殊的抽象类,他没有构造器
所有的方法都是抽象的,只能常量,不能有事例域,

在java中搞个interface  其实 来实现多继承

你可能感兴趣的:(java,C++,c,C#)