copy.cc

来自「2007年机器人足球世界杯3D仿真组亚军」· CC 代码 · 共 17 行

CC
17
字号
#include "predicate.ih"void Predicate::copy(Predicate const &_other){  ref_count = 0;  children.clear();  type = _other.type;  value = _other.value;  for (Children::const_iterator i = _other.children.begin();       i != _other.children.end(); ++i)    //    children.insert(*i);    children.push_back(*i);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?