[求助]此题不会,谁来指点一下,谢谢了
(2)一个类的头文件如下// test . h
# include < iostream . h >
class test { int m , n ;
public :
test ( int , int ) ;
void show ( ) ;
} ;
test : : test ( int a , int b )
{ m = a ; n = b ; }
void test : : show ( )
{ cout << m << " , " << n << endl ; }
编写一个主程序,产生对象Try,且Try . m = 35,Try . n = 65,并使用show ( )函数输出这个对象的值。