为什么这个 for 循环会在 while 条件之前退出?

发布于 2024-10-25 22:59:48 字数 685 浏览 3 评论 0原文

我正在读取一个文件并执行一个 while 循环来迭代运行文件中的每一行。在 while 循环内,我有一个 if 条件,其中有一个嵌套的 for 循环,该循环执行一些过程。发生的情况是,尽管保持 while 循环运行的条件仍然有效,但 for 循环完成后代码就会退出。

my $datafile = "data.txt";
open my $fh, "<", $datafile or die "Failed to open $datafile ($!)";

my $csv = Text::CSV->new() or die "Failed to create Text::CSV object";
my $line = <$fh>;

while ($line = <$fh>)
{ 
    blah blah
    blah blah

    if ($foo > $cow) {
        blah
    } elsif ($foo == $cow) { 
        blah
    } else {
        for ($i =1; $i <= $something; $i++) {
            blah blah
        }
    }
}

问题是代码没有完成遍历 data.txt 文件的每一行。 for 循环完成后,代码就会退出。

任何见解将不胜感激。谢谢。

I am reading a file and executing a while loop to iteratively run through each line in the file. Inside the while loop I have a if condition which has a nested for loop which does some processes. What happens is that the code exits once the for loop finishes despite the fact that the condition to keep the while loop running is still valid.

my $datafile = "data.txt";
open my $fh, "<", $datafile or die "Failed to open $datafile ($!)";

my $csv = Text::CSV->new() or die "Failed to create Text::CSV object";
my $line = <$fh>;

while ($line = <$fh>)
{ 
    blah blah
    blah blah

    if ($foo > $cow) {
        blah
    } elsif ($foo == $cow) { 
        blah
    } else {
        for ($i =1; $i <= $something; $i++) {
            blah blah
        }
    }
}

The problem is the code is not finished going through every line of the data.txt file. The code exits once it finishes with the for loop.

Any insight would be greatly appreciated. Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鸠魁 2024-11-01 22:59:48

我建议您使用调试器来查看发生了什么。 perldoc perldebug

I suggest you use the debugger to see what is happening. perldoc perldebug

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文