gpt4 book ai didi

arrays - zsh 中的本地数组

转载 作者:行者123 更新时间:2023-12-02 04:39:02 32 4
gpt4 key购买 nike

Zsh 有两个不错的功能,local 关键字和数组概念。

local my_var # Declare variable local to this function

arr=(1 2 3) # Create array with 3 elements
arr+=4 # Add a fourth element

分别。

将它们结合起来的想法(local arr=())是不可抗拒的,但似乎只是给出了一个错误?可能吗?

最佳答案

至少1999中的情况是不可能在一行上实现,但是存在这种解决方法:

local arr
arr=()

感谢 Peter Stephenson 当时的回答。

关于arrays - zsh 中的本地数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14917501/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com