自考新教材-p350_2
Posted duanqibo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自考新教材-p350_2相关的知识,希望对你有一定的参考价值。
源程序:
#include <iostream>
using namespace std;
template <class T>
class A
{
private:
T x, y, s;
public:
A(T a, T b)
{
x = a;
y = b;
s = x + y;
}
void show()
{
cout << "x+y=" << s << endl;
}
};
int main()
{
A <int>add(10,100);
add.show();
A <float>add1(1.1,2);
add1.show();
system("pause");
return 1;
}
运行结果:
以上是关于自考新教材-p350_2的主要内容,如果未能解决你的问题,请参考以下文章