Tuples allow you to store several values together in a single value. That might sound like arrays, but tuples are different:
can't add or remove items from a tuple; they are fixed in size.can't change the type of items in a tuple; they always have the same types they were created with.Tuples are created by placing multiple items into parentheses, like this:
var name = (first: "Taylor", last:"Swift")
You then access items using numerical positions starting from 0:
name.0
Or you can access items using their names:
name.first
Remember, you can change the values inside a tuple after you create it, but not the types of values. So, if you tried to change name to be (first: “Justin”, age: 25) you would get an error.
欢迎体验我的作品之一:小编辑器-XCompiler
在线编辑器~小而巧
App Store 搜索即可~