1

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

RouterID,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;
    }

};

而且我有以下执行为每个路由器ID创建一个新节点的工作;

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++,这是我尝试编写的第一个“大”程序。谁能指出我正确的方向?

4

2 回答 2

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

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

于 2013-07-16T00:42:25.413 回答
1

另一个区分类变量和输入参数的方法是使用关键字this。因此,您可以通过调用 this.routerID、this.x 和 this.y 来引用类变量

于 2013-07-16T03:00:02.890 回答