comandoendp.cpp
来自「"tiny" language interpreter written in j」· C++ 代码 · 共 26 行
CPP
26 行
/*
TP2 LP INTERPRETADOR TINY
ALUNO : ANDRE LUIS DURAO ABDO
MATRICULA : 283999
DATA DA ENTREGA : 10/05/2007
*/
//ComandoEndP.cpp
#include "ComandoEndP.h"
ComandoEndP::ComandoEndP(int linha){
//seta linha no vetor de execucao
this->linha = linha;
}
int ComandoEndP::executa(){
return (-1);
}
string ComandoEndP::toString(){
return "endp";
}
void ComandoEndP::defineLinhaSalto(int nolinha){
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?