//
// ViewController.swift
// 基本数据类型
//
// Created by 叶炯 on 16/9/8.
// Copyright © 2016年 叶炯. All rights reserved.
// import UIKit class ViewController: UIViewController { override func viewDidLoad() {
super.viewDidLoad() // let //常量
// var //变量
//
//使用let 必须初始化 let 的值不可改变 /*
字符,字符串
*/
//字符
var charValuel : Character = "q"
//字符串
var charValue2 : String = "" //初始化一个空的字符串 var charValue3 = ""
var charValue4 = String() //判断一个字符串是否为空
if charValue2.isEmpty {
print("字符串为空") } //或 if charValue3 == "" {
print("字符串为空")
} //给字符串赋值
let emptyString = "abc"
let emptyString2 = String("abc") //遍历一个字符串中的字符
for c in emptyString2.characters { print(c)
} /**
元祖
*/ //元祖内的值可以是任意类型,各元祖不必是相同的类型 //定义一个元祖 let product = (, "iphone 6s", )
print(product)
//获取元祖中的每一个元素
var (_year , _name , _price) = product print("year = \(_year)","_name=\(_name)", "price=\(_price)") //只输入一个值 let (_ ,name1, _) = product
print("name\(name1)") //可以使用点语法 let product2 = (year:, name:"iphone 6s", price:)
print(product2.year)
print(product2.name)
print(product2.price) /*
可选类型
*/ var stringValue : String
// print(stringValue) 编译不会通过, 没有初始化 var stringValue2 : String?
if (stringValue2 != nil) { print(stringValue2!) }
//如果字符串为""使用!打印会崩溃 使用? 输出为nil
//!表示一定有值 ? 表示可能有值
var numStr : String = ""
var value1 : Int? = Int(numStr)
print(value1) /**
数值得可读性
*/ let readabilty1 = ;
let readabilty2 = 1_000_000_000_1 /**
类型别名
*/ //类型别名就是给一个类型重新取一个更有意义的别名(新类型),它使用 typealias 关键字 //格式如下 typealias NewInt = Int32 var new_value : NewInt = print(new_value) /**
基本数据类型之间的转换
*/ // Int类型转换成其他的类型 var j :Int =
Double(j)
Float(j) //String 类型转 Int Float Double 类型 var s : String = "2.156asd2" //当第一个字符不是数字时,转为 Double 就为0
//当字符第一位为数字,可以直接转为数字,,遇到非字符时停止,数值为非字符之前的数字
Int(s)
print("-------",s) var s2 = s as NSString print(s2.integerValue)
print(s2.floatValue)
print(s2.doubleValue) //Double Float Int 转 String var d : Double = 1.68
"\(d)" var f : Float = 3.134
"\(f)" var i :Int =
"\(i)" //不能直接用 String(Int) 可以将字符串的数值使用"\(value)"形式
//Int 可以直接使用 Double(Int) Float(Int) /**
运算符
*/ /**
++i 是 i= i+1 而--i 是 i = i-1 */
//一元运算符
let three = -
let minusThree = -three
let plusThree = -minusThree print(minusThree, plusThree) //as 类型转换
//is 类型检查 } override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
} }

swift基本数据类型的使用的更多相关文章

  1. swift基本数据类型使用

    swift基本数据类型的使用之一: 字符串的使用 swift String的使用 1.字符串的定义 1> 不可变字符串的定义 2> 可变字符串的定义 2.获取字符串的长度 3.字符串的拼接 ...

  2. swift 中数据类型那个的转换

    在swift中关于数据类型的转换,如果参数是可选类型? 那么打印或者转换的结果 会带有Optional 字样,,

  3. iOS开发零基础--Swift篇:Swift中数据类型

    Swift类型的介绍 Swift中的数据类型也有:整型/浮点型/对象类型/结构体类型等等 先了解整型和浮点型 整型 有符号 Int8 : 有符号8位整型 Int16 : 有符号16位整型 Int32 ...

  4. Swift 基本数据类型

    Swift 1,Swift支持所有C和Objective-C的基本类型,支持面向过程和面向对象的编程机制. 2,Swift提供了两种功能强劲的集合类型:数组和字典. 3,元组. 4,可选类型. 5,S ...

  5. Swift - 基本数据类型,及常/变量声明

    2015-01-08 14:59 发布:yuhang 浏览:434 下面是Swift中基本的数据类型介绍说明: 1,变量:使用var声明 1 var str:String = "hangge ...

  6. Swift中数据类型

    Swift类型的介绍 Swift中的数据类型也有:整型/浮点型/对象类型/结构体类型等等 先了解整型和浮点型 整型 有符号 Int8 : 有符号8位整型 Int16 : 有符号16位整型 Int32 ...

  7. Swift 基本数据类型与运算符表达式

    // // main.swift // LessonSwift01 // // Created by lanouhn on 16/1/25. // Copyright © 2016年 齐彦坤. All ...

  8. swift基本数据类型使用-数组使用

    目录 数组的使用 1.数组的定义 2.对可变数组的基本操作 3.数组的遍历 4.数组的合并 5. 示例 数组的使用 1.数组的定义 1> 定义不可变数组 2> 定义可变数组 2.对可变数组 ...

  9. Swift - 复杂数据类型说明(数组,字典,结构体,枚举)

    1,数组 - Array 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 var types ...

随机推荐

  1. linux常用命令[持续更新]

    top 察看系统状态,退出按q ps -A 察看所有进程 ps -A|grep gcalc|awk '{print $1}'|xargs kill 杀掉所有gcalc进程

  2. workstack windows to openstack

    https://www.mirantis.com/openstack-portal/express-openstack-portal/migrating-from-vmware-for-windows ...

  3. sass学习(2)——关于变量

    定义一个sass变量 可以说,变量是一个编程语言的基础.所以对于sass来说,变量肯定是浓墨重彩的其中一笔,当然函数也是.那我们如何声明定义一个sass的变量呢? 变量的符号$ 变量名称 变量的值 那 ...

  4. Shell统计报表表格生成

    基本需求 分析完数据后,一般需要将数据以附件的形式发送处理,这个已经在<>中有介绍,如何 用Python实现附件的发送. 但不是所有人都关心附件的内容,一般邮件中需要有些概要的信息,如附件 ...

  5. Storm ui 展示字段说明

    1.Storm ui 首页 主要分为4块: Cluster Summary,Topology summary,Supervisor summary,Nimbus Configuration,如下图所示 ...

  6. CentOs中iptables配置允许mysql远程访问

    在CentOS系统中防火墙默认是阻止3306端口的,我们要是想访问mysql数据库,我们需要这个端口,命令如下: 1 /sbin/iptables -I INPUT -p tcp --dport 30 ...

  7. How to organize the Template Files in C++

    Normally you put class definitions in a header file and method definitions in a source file. Code th ...

  8. hashCode()和equals()的用法

    使用hashCode()和equals() hashCode()和equals()定义在Object类中,这个类是所有java类的基类,所以所有的java类都继承这两个方法. hashCode()方法 ...

  9. IE 、Firefox、Chrome 浏览器在 F12 控制台下切换至不同框架介绍

    有不少网页的页面,还在使用 iframe 标签,而此时,相当于页面有两个 window 对象,一个为当前页面 window ,另一个则为 iframe 页面下的 window .因为,有时候需要在 c ...

  10. shiro安全三部曲

    源:http://blog.csdn.net/boonya/article/details/8233435 第一部分 Shiro简介及项目目录结构 最新官方示例下载:http://shiro.apac ...