📄 uni_06.cc
字号:
// file: $isip/class/stat/UniformModel/uni_06.cc// version: $Id: uni_06.cc,v 1.1 2000/12/23 00:31:39 picone Exp $//// system include files//#include <typeinfo>// isip include files//#include "UniformModel.h"// method: eq//// arguments:// const StatisticalModelBase& arg: (input) object to assign//// return: a boolean value//// this method checks whether two UniformModel objects are equal or not//boolean UniformModel::eq(const StatisticalModelBase& arg_a) const { // make sure we have the right type of data // if (typeid(arg_a) == typeid(UniformModel)) { return eq((UniformModel&)arg_a); } else { return Error::handle(name(), L"eq", Error::ARG, __FILE__, __LINE__); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -