Operator构造函数和析构函数
函数功能
Operator构造函数和析构函数。
函数原型
数据类型为string的接口后续版本会废弃,建议使用数据类型为非string的接口。
Operator();
explicit Operator(const string& type)
explicit Operator(const char *type);
explicit Operator(const string& name, const string& type)
Operator(const ge::AscendString &name, const ge::AscendString &type);
Operator(const char *name, const char *type);
virtual ~Operator()
参数说明
参数名 |
输入/输出 |
描述 |
---|---|---|
type |
输入 |
算子类型。 |
name |
输入 |
算子名称。 |
返回值
Operator构造函数返回Operator类型的对象。
异常处理
无。
约束说明
无。
父主题: Operator类