在函数之间传递值
大家好,有什么方法可以在函数中本地定义变量,然后将其传递给其他函数。 我的意思是说是否有可能将本地值从一个函数传递到另一个函数。 有人请建议我解决方案。 提前致谢
Hi All is there any way to locally define a variable in a function and then pass it to the oher function. I mean to say is it possible the pass a local value from one function to other function.
Somebody Please suggest me the solution.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者就是这么简单或者你的意思是别的:
或者使用全局变量作为临时存储:
Or it's that simple or you meant something else:
or use global variable as temporary storage:
兹德米特里夫是对的。
虽然,您也可以创建默认变量,如下所示:(
修改 zdmytriv 的代码)
这将跟踪:
有点偏离主题,但很高兴知道。
zdmytriv is right.
Although, you can also make default variables, like so:
(Modifying zdmytriv's code)
This would trace:
A little off topic, but good to know.
Flex 中的基元按值传递,而复杂对象则按引用传递。 您可以使用它来传递对象,而无需将变量的范围限定在函数本身之外。 例如:
这将跟踪:
这反映了 function2 通过引用接收参数“obj”这一事实,作为指向原始“localVar”对象的指针。 当它设置 .value 字段时,该更改会反映在 function1 中。
我只是想指出这一点。
Primitives in Flex are passed by value, where complex objects are passed by reference. You can use this to pass objects around without scoping a variable outside the functions themselves. For instance:
This would trace:
Which reflects the fact that function2 receives the parameter "obj" by reference, as a pointer to the original "localVar" object. When it sets the .value field, that change is reflected in function1.
I just thought I'd point that out.