swit 元组的用法

news/2024/11/16 18:38:59/
import UIKit//1 使用数组定义一组数据
let array = ["zhengyanfeng" , 18 , 1.88] as [Any]array[0] // 取出数组中的第一个元素
array[1] // 取出数组中的第二个元素//2 使用字典定义一组数据
let dic = ["name" : "zhengyanfeng" , "age" : 18 , "height" : 1.88] as [String : Any]
dic["name"] //取出键为name的值//3 使用元组定义一组数据
//3.1 元组最基本的定义方法
let info = ("zhengyanfeng" , 18 , 1.88)
info.0 //取出元组的第一个元素
info.1 //取出元组的第二个元素//3.2 元组的第二种定义方法(最常用的一种元组定义方法)
let yuanzu = (name:"zhengyanfeng" , age:18 , height:1.88)
yuanzu.name //取出元组中标号为name的值
yuanzu.age  //取出元组中标号为age的值//3.3 元组的第三种定义方法
let (name , age , height) = ("zhengyanfeng" , 18 , 1.88)
name //取出元组中标号为name的元素
age  //取出元组中标号为age的元素


http://www.ppmy.cn/news/754243.html

相关文章

enum和switch的爱恨情仇

写入枚举类A /*** author Mxhlin* Email fuhua277163.com* Date 2022/10/11/15:27* Version* Description*/ public enum A {A(1),B(2),C(3),D(4),E(5),F(6);int i;A(int i) {this.i i;}public static A fo(int i ){for (A a : A.values()){if (a.ii){return a;}}return null…

unity_android工程和android_studio工程合并

说明:1.开发环境:win10、unity3d 4.3.6f1、android studio 2.3.1.02.单个英文单词,均为unity编辑器里的选项 功能:将unity_android工程合并到原android_studio工程,实现在原工程中点击按钮启动unity_android工程一、un…

swit 字典用法,增删改查、合并

import UIKit//1定义字典 //1.1定义不可变字典,系统会自动判断[]里面存放的是键值对还是数组元素 let dic1 ["name":"zhengyanfeng" , "age":16 , "height":1.88] as [String : Any]//1.2定义可变字典 var dic2 [String : Any]()//2…

swit开发Dictionary详细使用

// // ViewController.swift // SwiftDictionary import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() self.view.backgroundColor UIColor.yellow; //创建一个空数组 let dic1 [Int: String]() print(dic1) //创建…

linux ps -vv,监控IO性能| free命令 |ps命令 |查看网络状态 |linux下抓包

10.6 监控IO性能 [rootaminglinux-001 ~]# iostat -x Linux 3.10.0-514.el7.x86_64 (aminglinux-001) 2018年01月22日 _x86_64_ (2 CPU) avg-cpu: %user %nice %system %iowait %steal %idle 4.87 0.00 8.42 14.51 0.00 72.20 Device: rrqm/s wrqm/s r/s w/s rkB/s wkB/s avgrq…

swit 闭包的基本使用

还是模拟网络请求,首先创建网络请求类 // // NetworkRequestTool.swift // Test // // Created by fe on 2017/2/28. // Copyright © 2017年 fe. All rights reserved. //import UIKitclass NetworkRequestTool: NSObject {//闭包类型:(参数列表…

Swit项目-初始化配置

一、项目部署配置 二、初始化项目 ①常规初始化 class MainViewController: UITabBarController {override func viewDidLoad() {super.viewDidLoad()//1.创建TabBar第一种方法addChildViewController( "HomeViewController", "首页", "tabbar_home…

python中break和continue的区别_python中break和continue的区别

原博文 2017-08-01 09:56 − break和continue 1.break 意思为结束循环 例&#xff1a; i 0 while i<10: i1 if i5: #当i5时&#xff0c;结束整个循环 ... 0 30778 相关推荐 2019-12-20 11:37 − 1、break break的使用场景&#xff1a;循环语句和switch-case分支语句。…