2

我正在打开一个文件,并从中获取行。第一行应该说明有多少变量,以及它们的名称。第二行应该是使用这些变量的逻辑方程。任务是让它打印出变量和方程的真值表。

如果我没有插入新的行字符,程序接收的第一行就不会打印。我尝试转换为字符串并同时使用 printf 和 cout。

输入所有内容的主文件:

#include "truthTable2.h"

int main(int argc, const char* argv[]){
  ifstream inFile;
  if(argc != 2){
    cout << "Enter an input file name: ";
    char *inFileName = "";
    cin >> inFileName;
    inFile.open(inFileName);
  }
  else
    inFile.open(argv[1]);
  TruthTable tTable;
  while(!inFile.eof()){
    char variableLine[256];
    inFile.getline(variableLine, 256);
    printf("%s ", variableLine);
    string variable(variableLine);
    tTable.setVariables(variable);
    char formulaLine[256];
    inFile.getline(formulaLine, 256);
    cout << formulaLine << "\n";
    string formula(formulaLine);
    tTable.setFormula(formula);
    tTable.printTable();
  }
  inFile.close();
  return 0;
}

样本输入:

2 x y
( \wedge x ( \not y ) )

输出:

 ( \wedge x ( \not y ) )

我认为无论是什么原因造成的,都会在整个程序的其余部分给我带来问题。在我对 variableLine 进行标记后,它不会在没有换行符的情况下打印,并且在评估公式时找不到第二个变量。

4

2 回答 2

5

需要std::ostream刷新 的输出。\n它通常在写入换行符时自动刷新。如果要强制流刷新,可以std::flush像这样使用操纵器:

std::cout << "foo" << std::flush;

编辑:虽然我的帖子清楚地回答了“为什么我的行不显示,除非我输出一个\n字符?”这个问题。你说这不能回答你的问题,所以我会尝试一些读心术来回答你真正的问题。

由于我不知道您真正想知道什么,因此我将在此处指出您的代码有问题的几处,它可能会帮助您找到问题或澄清您的问题。

首先,如果您使用从 输入的文件名std::cin,当argc<2100% 保证会导致您的应用程序失败。原因是 指向的字符缓冲区inFileName包含一个字节,为终止的空字符保留。如果有人输入任何文本,您将获得缓冲区溢出如果有人输入一个空字符串,您的程序将不会打开任何文件,并且inFile.open(...);会返回一个您不检查的错误代码,因此您的程序不会崩溃,但仍然无法运行。

其次,其他行输入不必要地限制为 256 个字符并且同样危险(即超过 256 个字符的行会导致缓冲区溢出)。由于您最终会std::string从内容中创建实例,因此您应该直接使用std::getline(). 打字更短,更通用,更安全。

第三,你的问题的描述是除非你添加一个\n字符,否则不会产生输出。正如我所解释的,这是完全正常的。通过重新阅读您的帖子,我可以理解您不明白为什么必须添加一个,因为输入文件中已经有一个。您需要添加它的原因是因为getline()函数会丢弃该\n字符。它不会插入到您的线路缓冲区中。

我已经清理了您的一些代码,以向您展示一些明显的改进。从这段代码中,您将能够理解程序的结构,这也应该反映您输入的结构。

#include "truthTable2.h"

int main(int argc, const char* argv[]){
  std::ifstream inFile;
  if(argc != 2){
    cout << "Enter an input file name: ";
    std::string inFileName;
    std::getline(std::cin, inFileName);
    inFile.open(inFileName.c_str());
  }
  else {
    inFile.open(argv[1]);
  }
  if ( !inFile.is_open() ) {
      // Did not successfully open a file. Print error message and exit!
  }
  TruthTable tTable;
  for (std::string variables; std::getline(inFile,variables); )
  {
    std::cout << variables << std::endl;
    tTable.setVariables(variable);
    std::string formula std::getline(formula);
    std::cout << formula << std::endl;
    tTable.setFormula(formula);
    tTable.printTable();
  }
  return 0;
}

由此,我有一个问题:您的输入是如何构成的?您的输入文件是否仅包含 2 行?是否有多组这些线对?是否有一行包含变量和一堆方程?这三个案例将引导我以下列方式之一重新构建程序:

仅 2 行

ThruthTable table;
std::string variables, equation;
std::getline(file, variables);
std::getline(file, equation);
// ...

多套

while ( !inFile.eof() )
{
    ThruthTable table;
    std::string variables, equation;
    std::getline(file, variables);
    std::getline(file, equation);
    // ...
}

多个方程

ThruthTable table;
std::string variables;
std::getline(variables);
for ( std::string equation; std::getline(file, equation); )
{
    std::getline(file, equation);
    // ...
}
于 2010-11-16T20:39:21.643 回答
0

如果我看到的是正确的,那么 printf 的输出就是没有显示的输出。在这种情况下,要么使用

fflush(stdout);

或者更好的是,只需为该行添加 std::cout 即可,因为您是用 C++ 编写的(std::flush当然是使用该技术。)

于 2010-11-16T21:26:50.233 回答