我正在尝试读取一个包含以下三个属性的文本文件;

路由器ID,X坐标,Y坐标

txt文件的简短片段如下所示;

100 0       0
1   20.56   310.47
2   46.34   219.22
3   240.40  59.52
4   372.76  88.95

现在,我想要实现的是为每个 RouterID 创建一个节点,并存储其相应的x和y坐标。为此,我创建了以下类;
class Node {

public:
    float routerID;
    float x;
    float y;

    void set_rid (float routerID) {
        routerID = routerID;
    }

    void set_x_y (float x, float y) {
        x = x;
        y = y;
    }

};

接下来,我将为每个routerID创建一个新节点;
const std::string fileName = "sampleInput.txt";
std::list<Node> nodeList;

int main (void) {

    std::ifstream infile(fileName);

    float a(0);
    float b(0), c(0);

    //This reads the file and makes new nodes associated with every input
    while (infile >> a >> b >> c) {
        Node newNode;
        newNode.set_rid (a);
        newNode.set_x_y (b, c);
        std::cout << "newNode " << "rid = " << newNode.routerID << " x = " << newNode.x << " y = " << newNode.y << std::endl;
        nodeList.push_back(newNode);
    }

我在while循环中执行以下行,只是为了检查所分配的值是否正确。
std::cout << "newNode " << "rid = " << newNode.routerID << " x = " << newNode.x << " y = " << newNode.y << std::endl;

当我编译并运行代码时,我得到以下内容作为所有代码的输出;
newNode rid = -1.07374e+008 x = -1.07374e+008 y = -1.07374e+008

我上周刚开始学习C++,这是我尝试编写的第一个“大型”程序。有人能指出我正确的方向吗?

最佳答案

void set_rid (float routerID) {
    routerID = routerID;
}

这并不像您认为的那样起作用。它为自己分配参数; this->routerID的值保持不变。与set_x_y相同。只需为方法参数指定一些与数据成员不同的名称即可。

10-08 07:04