1楼:庄政警
//q***puter.h
#pragmaonce
template
classq***puter
doubleadd();//这几个函数不能返
回引用doublemin();//值
doublemul();//值
doublediv();//值
};//q***puter.cpp
#include"stdafx.h"
#include"q***puter.h"
template
doubleq***puter::add()//不能返回引用,要返回值
template
doubleq***puter::min()//要返回double值
template
doubleq***puter::mul()//要返回double值
template
doubleq***puter::div()//要返回double值
//stdafx.h
#pragmaonce
#include"targetver.h"
#include
#include
#include"q***puter.cpp"
#include"q***puter.h"
#include
usingnamespacestd;
//主函数
#include"stdafx.h"
int_tmain(intargc,_tchar*argv)
{q***puters(1,2.0);
cout<
给你改了下,方法调用时少了括号,临时值不能返回引用