0

我编写了这个从文本文件中读取一些数字的小解析器。

    data.resize(7,datapoints); //Eigen::Matrix<float,7,-1> & data
    dst = data.data();

    while( fgets(buf,255,fp) != 0 && i/7 < datapoints)
    {

        int n = sscanf(buf,"%f \t%f \t%f \t%f \t%f \t%f \t%f",dst+i++, dst+i++,dst+i++,dst+i++,dst+i++,dst+i++,dst+i++);
            i = i - 7 * (n<=0);
    }
    fclose(fp);
    return !(datapoints == i/7);

问题是,当我对它翻转的数据执行 std::cout 时。

数据在:

0   4   0.35763609  0.64077979  0   0   1
0   4   0.36267641  0.68243247  1   0   2
0   4   0.37477320  0.72945964  2   1   3

data.col(3) 是

0.64077979  
0.68243247  
0.72945964 

和 data.col(4) 是

0.35763609  
0.36267641  
0.37477320 

我看不出它为什么水平翻转数据的逻辑?

4

2 回答 2

6

为了说明问题:

#include <cstdio>

void f(int i, int j, int k)
{
  printf("i = %d\tj = %d\tk = %d\n", i, j, k);
}

int main()
{
  int i=0;
  f(i++, i++, i++);
}

执行此操作,返回此处(Cygwin 上的 g++ 4.3.4):

i = 2   j = 1   k = 0

i++函数调用内部调用的执行顺序完全由实现定义(即任意)。

于 2013-01-28T11:43:12.347 回答
3

你确定比?

int i=0;
sscanf(buf,"%f \t%f \t%f \t%f \t%f \t%f \t%f",dst+i++, dst+i++,dst+i++,dst+i++,dst+i++,dst+i++,dst+i++);

等于:

sscanf(buf,"%f \t%f \t%f \t%f \t%f \t%f \t%f",dst+0,dst+1,dst+2,dst+3,dst+4,dst+5,dst+6 );

我认为在这种情况下,变量列表 arg 正在被重新评估,并且正如@Christian Rau 评论一般是未定义的评估顺序。经常考虑副作用顺序并不是一个好主意。

于 2013-01-28T11:36:31.527 回答