本文介绍了是否有一个名字为这个语法getSomeValues()[0]?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在某些语言中,如果一个函数返回一个数组,那么相对于存储阵列中的一个变量,然后获取单个元素,像这样的:
VAR someValues = getSomeValues();
变种firstElement = someValues [0];
您可以使用数组索引符号函数调用后直接检索返回数组的元素代替,像这样的:
VAR firstElement = getSomeValues()[0];
这是什么结构或语法称为?是否在所有有一个特殊的名字吗?
解决方案
What you are doing is accessing the indexed element of the array/collection returned by the function. You are not directly accessing an index in a function.
I would call this "chaining" an indexer to the return value.
这篇关于是否有一个名字为这个语法getSomeValues()[0]?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!