Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你会怎么做:
setter(index, value)
或者
setter(value, index)
我会说第一个。我通常将高级参数放在第一位,即索引决定将值放在哪里。
从计算机的角度来看:首先你需要存储的位置,当找到时,可以设置值。
它类似于设置例如汽车元素的属性:
SetWheelDiameter(CarModel model, Part.Wheels, Wheel.Diameter, 19.0) 参数从高到低。
谷歌搜索:
"T value int index"
表明它比以下内容更常见:
"int index T value"