gpt4 book ai didi

unix - qore中的函数参数范围是什么?

转载 作者:行者123 更新时间:2023-12-04 18:28:36 24 4
gpt4 key购买 nike

我对 qore 0.8.12 中的变量范围有点困惑。函数参数似乎与全局变量具有相同的作用域——这可能吗,还是我做错了什么?

3.1.0 kveton@kvela ~$ cat zk1.q 
%new-style
%strict-args

sub fun(string v)
{
print("xxx\n");
}

string v = "zzz";
3.1.0 kveton@kvela ~$ qore zk1.q
unhandled QORE System exception thrown in TID 1 at 2017-01-30 08:10:32.612137 Mon +01:00 (CET) at zk1.q:4
PARSE-ERROR: local variable 'v' was already declared in the same block at zk1.q:9

谢谢解释...

最佳答案

顶级作用域中的局部变量实际上是全局线程局部变量。

看:

  • https://docs.qore.org/current/lang/html/variables.html#local_variables
  • https://docs.qore.org/current/lang/html/threading.html#threading_and_variables

  • 这使得无法使用与参数变量相同的变量名(它是定义的函数、方法或闭包范围内的局部变量)。

    关于unix - qore中的函数参数范围是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41930677/

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