📄 comandolabel.h
字号:
//ComandoLabel.h
#ifndef COMANDOLABEL_H
#define COMANDOLABEL_H
#include "Comando.h"
#include "Memoria.h"
#include <string>
using namespace std;
class ComandoLabel: public Comando{
public:
ComandoLabel(Memoria *mem_labels, string rotulo, int linha);
~ComandoLabel(){};
int executa();
string toString();
void defineLinhaSalto(int nolinha);
private:
Memoria *mem_labels;
//linha de execucao
int linha;
//rotulo do comando
string rotulo;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -