主观

#include ﹤ iostream. h ﹥

class test1 {

private: int x;

public: test1 ( ) { x = 2 ; }

void set(int a){x =a;}

void get( ) { cout ﹤﹤ x ﹤﹤ endl; }

};

class test2{

private: int x;

public: test2 ( ) { x = 3; }

void set( int a) { x = a; }

void get( ) { cout ﹤﹤ x ﹤﹤ endl; }

};

class test: public testl, public test2 {

private: int x;

public: void set( int a) { x=a; }

void gettest( ) {cout ﹤﹤ x ﹤﹤ endl; }

};

void main( ) {

test a; a. get( );

}

参考答案
您可能感兴趣的试题
¥

订单号:

遇到问题请联系在线客服

订单号:

遇到问题请联系在线客服