示例#1
0
文件: stdafx.cpp 项目: CAHbl4/CPP
Test operator+(int lval, const Test& rval){
	int tmp;
	tmp = lval + rval.GetData();
	return Test(tmp);
}