如何在C ++中正确使用没有输入参数的void函数

时间:2018-01-26 02:54:31

标签: c++ lnk2019

我对C ++很陌生。我需要创建一个小应用程序来读取txt文件的内容,然后在控制台中显示内容。我有三个点形成一个三角形,我将在稍后绘制。我想在一个名为read2dFile的函数中执行所有这些操作,所以我的main实际上是空的(除了调用函数)。当我在另一个项目的主程序中尝试此代码时,一切正常。好像我的函数没有正确声明。这是我的代码:

**Test.cpp** (FOR THE MAIN)

// Test.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include "read2dFile.h"

int main()
{
    read2dFile();
    return 0;
}

read2dfile.h (对于功能标题)

#ifndef READ2DFILE_H_
#define READ2DFILE_H_

#include <iostream>
#include <iomanip>
#include <array>
#include <fstream>
#include <sstream>
#include <string>
#include <stdio.h>

using namespace std;

void read2dFile();

#endif

read2dFile.cpp (针对功能代码)

#include "read2dFile.h"

int row = 0;
int col = 0;

void read2dFile() {

    string line;
    int x;
    int array[100][100] = { { 0 } };
    string filename;

    ifstream fileIN;

    // Intro
    cout
        << "This program reads the number of rows and columns in your data 
    file."
        << endl;
    cout << "It inputs the data file into an array as well." << endl;
    cout << "\nPlease enter the data file below and press enter." << endl;
    cin >> filename;

    fileIN.open(filename);

    // Error check
    if (fileIN.fail()) {
        cerr << "* File you are trying to access cannot be found or opened *";
        exit(1);
    }

    // Reading the data file
    cout << "\n" << endl;
    while (fileIN.good()) {
        while (getline(fileIN, line)) {
            istringstream stream(line);
            col = 0;
            while (stream >> x) {
                array[row][col] = x;
                col++;
            }
            row++;
        }
    }

    // Display the data
    cout << "# of rows ---> " << row << endl;
    cout << "# of columns ---> " << col << endl;
    cout << " " << endl;
    for (int i = 0; i < row; i++) {
        for (int j = 0; j < col; j++) {
            cout << left << setw(6) << array[i][j] << " ";
        }
        cout << endl;
    }

}

1 个答案:

答案 0 :(得分:1)

我有一些建议(你的代码编译好我)。

  1. 不是特定于您的问题,但您应该了解classobject oriented programming,以便更轻松地使用C ++生活。
  2. 这些是read2dFile()函数所需的唯一包含文件。把它们放入read2dFile.cpp!原因是你不希望标题包含在其他标题中,除非绝对必要。
  3. 这些指令将位于 read2dFile.cpp

    的顶部
    #include <iostream>
    #include <iomanip>
    #include <fstream>
    #include <string>
    #include <sstream>
    
    1. using namespace std;打开闸门,可能导致命名空间冲突。尽量避免这样做。如果您仍然坚持这样做,请在.cpp源文件(而不是.h头文件中)中执行此操作。相反,您可以声明使用标准命名空间的特定部分(仅限您需要的部分)。
    2. 这些using指令可代替您的using namespace std;,您将再次将它们放入 read2dFile.cpp 源文件中。

      using std::string;
      using std::ifstream;
      using std::cout;
      using std::endl;
      using std::cin;
      using std::cerr;
      using std::istringstream;
      using std::left;
      using std::setw;
      
      1. 您的 read2dFile.h 现已缩减为您的功能声明。
      2. 该文件现在看起来像这样。

        #ifndef READ2DFILE_H_
        #define READ2DFILE_H_
        
        void read2dFile();
        
        #endif
        

        您的main()可以保持原样,如果它仍然不适合您,请尝试从 Test.cpp 源文件中删除预编译的标头指令#include "stdafx.h"。这里不需要它,有时在某些情况下会导致编译器错误。