作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我通常用这种方式编写我的 Perl 测试
for my $i ( 0, 1, 2 ) {
is_deeply( $fetch_public_topic_ids->[$i],
$expected_sorted_topic_list->[$i], 'Match' );
当 $expected_sorted_topic
是我的测试用例数据的数组引用时。我有时会收到反馈,我应该避免在“for”中写 0、1、2、3... 或 0...5,因为这被认为是“糟糕的风格”?
但是我有什么替代方案呢?
最佳答案
您想遍历数组的索引,但没有数组参与索引的确定。问题是索引的硬编码。
for my $i (0..$#$fetch_public_topic_ids) {
...
}
关于perl - 用更时尚的东西替换我的 $i ( 0, 1, 2 )?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17779559/
import io import torch import torch.nn as nn from torchvision import models from PIL import Image im
我正在使用时尚 MNIST 数据集来尝试解决这个问题。我正在使用链接中的数据: 培训: http://fashion-mnist.s3-website.eu-central-1.amazonaws.c
我正在使用 Firefox 插件 Stylish 为 Facebook 创建自定义样式。我试图让顶部的蓝色条变平,但我做不到。我使用 CSS 代码: #blueBar { background-
我是一名优秀的程序员,十分优秀!