state.cpp
来自「一个简单使用的控制器」· C++ 代码 · 共 52 行
CPP
52 行
#include <iostream>#include "State.h"State::State(vector<int> vars) { m_vars = vars;}int State::getVar(int index) const{ return m_vars[index];}void State::print() const{ cout << "State: ( "; for (int i=0; i<(int) m_vars.size(); i++) cout << m_vars[i] << " "; cout << ")" << endl;}void State::print(string &str) const{ str += "State: ( "; for (int i=0; i<(int) m_vars.size(); i++){ char num[100]; if (i==(int)m_vars.size()-1) sprintf(num,"%d",m_vars[i]); else sprintf(num,"%d, ",m_vars[i]); str += num; } str += " )\n";}/********************************************************************* * (C) Copyright 2006 Albert Ludwigs University Freiburg * Institute of Computer Science * * All rights reserved. Use of this software is permitted for * non-commercial research purposes, and it may be copied only * for that use. All copies must include this copyright message. * This software is made available AS IS, and neither the authors * nor the Albert Ludwigs University Freiburg make any warranty * about the software or its performance. *********************************************************************/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?