0

次のようなアセンブリ命令を含むテキスト ファイルから読み込んでいます

[ラベル] オペコード [arg1] [,arg2]

現在、ラベルを読み取る段階にあるだけですが、ファイルから読み取ってラベルを配列に入力すると、そこにあるはずのない空白行がいくつか得られます。これが私のコードです

#include <string>
#include <iostream>
#include <cstdlib>
#include <string.h>
#include <fstream>
#include <stdio.h>



using namespace std;


int main(int argc, char *argv[])
{
// If no extra file is provided then exit the program with error message
if (argc <= 1)
{
    cout << "Correct Usage: " << argv[0] << " <Filename>" << endl;
    exit (1);
}

// Array to hold the registers and initialize them all to zero
int registers [] = {0,0,0,0,0,0,0,0};

string memory [16000];

string Symtablelab[1000];
int Symtablepos[1000];


string line;
string label;
string opcode;
string arg1;
string arg2;


// Open the file that was input on the command line
ifstream myFile;
myFile.open(argv[1]);


if (!myFile.is_open())
{
    cerr << "Cannot open the file." << endl;
}

int counter = 0;
int i = 0;
int j = 0;

while (getline(myFile, line, '\n'))
{

    if (line[0] == '#')
    {
        continue;
    }


    if (line[0] != '\t' && line[0] != ' ')
    {

        string delimeters = "\t";

        int current;
        int next = -1;


        current = next + 1;
        next = line.find_first_of( delimeters, current);
        label = line.substr( current, next - current );

        Symtablelab[i] = label;

        cout << Symtablelab[i] << endl;

        i++;

    }


}


return 0;
}

このコードから得られる出力は次のとおりです。

blank line
TOP
VAL
TAN
blank line

私は取得する必要があります:

TOP
VAL
TAN

これが私が読んでいるサンプルテキストファイルです

# Sample Input

    LA 1,3
    LA 2,1
TOP     NOP
    ADDR 3,1
    ST 3, VAL
    CMPR 3,4
    JNE TOP
    P_INT 1,VAL
    P_REGS
    HALT
VAL     INT 0
TAN     LA  2,1
4

1 に答える 1

1

コメントの後の空白行と末尾の暗黙の空白行が問題を引き起こしています。空白行のコメント チェックの後にチェックを追加する必要があります。

if (line.length == 0) {
  continue;
}
于 2012-09-16T05:02:25.640 に答える