自考新教材-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的主要内容,如果未能解决你的问题,请参考以下文章

自考新教材-p274_2

自考新教材-p272_2

自考新教材-p240_2

自考新教材-p279_2

自考新教材-p352_2

自考新教材-p58_3