如何使用 AWK 在 Begin 语句中定义动态数组
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
info gawk
部分表示:但是,如果您想将变量“声明”为数组,因此稍后将其错误地作为标量引用会产生错误,则可以将其包含在
BEGIN
子句中:这将创建一个空数组。
这也可以用于清空现有数组。虽然
gawk
能够使用delete
来实现此目的,但其他版本的 AWK 却没有。info gawk
says, in part: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:which will create an empty array.
This can also be used to empty an existing array. While
gawk
has the ability to usedelete
for this, other versions of AWK do not.我认为你不需要在 awk 中定义数组。您只需按照下面的示例使用它们即可:
请注意,没有单独的定义。该示例取自AWK 手册。
I don't think you need to define arrays in awk. You just use them as in the example below:
Notice how there's no separate definition. The example is taken from The AWK Manual.