如何使用 AWK 在 Begin 语句中定义动态数组

发布于 2024-10-06 04:28:48 字数 194 浏览 2 评论 0原文

我想在 BEGIN 语句中定义一个索引号未定义的数组;我怎样才能在 AWK 中做到这一点?

BEGIN {send_packets_0to1 = 0;rcvd_packets_0to1=0;seqno=0;count=0; n_to_n_delay[];}; 

我对 n_to_n_delay[] 有问题。

I want to define an array in my BEGIN statement with undefined index number; how can I do this in AWK?

BEGIN {send_packets_0to1 = 0;rcvd_packets_0to1=0;seqno=0;count=0; n_to_n_delay[];}; 

I have problem with n_to_n_delay[].

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

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

发布评论

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

评论(2

猛虎独行 2024-10-13 04:28:48

info gawk 部分表示:

“awk”中的数组表面上类似于其他编程中的数组
语言,但存在根本差异。在“awk”中,不是
在开始使用数组之前有必要指定数组的大小。
此外,“awk”中的任何数字或字符串,而不仅仅是连续的
整数,可以用作数组索引。

在大多数其他语言中,数组必须在使用前“声明”,
包括它们有多少元素或组件的规范
包含。在此类语言中,声明会导致连续的块
为这么多元素分配的内存。通常,索引位于
数组必须是正整数。

但是,如果您想将变量“声明”为数组,因此稍后将其错误地作为标量引用会产生错误,则可以将其包含在 BEGIN 子句中:

split("", n_to_n_delay)

这将创建一个空数组。

这也可以用于清空现有数组。虽然 gawk 能够使用 delete 来实现此目的,但其他版本的 AWK 却没有。

info gawk says, in part:

Arrays in 'awk' superficially resemble arrays in other programming
languages, but there are fundamental differences. In 'awk', it isn't
necessary to specify the size of an array before starting to use it.
Additionally, any number or string in 'awk', not just consecutive
integers, may be used as an array index.

In most other languages, arrays must be "declared" before use,
including a specification of how many elements or components they
contain. In such languages, the declaration causes a contiguous block
of memory to be allocated for that many elements. Usually, an index in
the array must be a positive integer.

However, if you want to "declare" a variable as an array so referencing it later erroneously as a scalar produces an error, you can include this in your BEGIN clause:

split("", n_to_n_delay)

which will create an empty array.

This can also be used to empty an existing array. While gawk has the ability to use delete for this, other versions of AWK do not.

听你说爱我 2024-10-13 04:28:48

我认为你不需要在 awk 中定义数组。您只需按照下面的示例使用它们即可:

{
  if ($1 > max)
    max = $1
  arr[$1] = $0
}

END {
  for (x = 1; x <= max; x++)
    print arr[x]
}

请注意,没有单独的定义。该示例取自AWK 手册

I don't think you need to define arrays in awk. You just use them as in the example below:

{
  if ($1 > max)
    max = $1
  arr[$1] = $0
}

END {
  for (x = 1; x <= max; x++)
    print arr[x]
}

Notice how there's no separate definition. The example is taken from The AWK Manual.

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