• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Swift语言概览-自己在Xcode6动手写1

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

Swift是什么?

Swift是苹果于WWDC 2014发布的编程语言,这里引用The Swift Programming Language的原话:

Swift is a new programming language for iOS and OS X apps that builds on the best of C and Objective-C, without the constraints of C compatibility.

Swift adopts safe programming patterns and adds modern features to make programming easier, more flexible and more fun.

Swift’s clean slate, backed by the mature and much-loved Cocoa and Cocoa Touch frameworks, is an opportunity to imagine how software development works.

Swift is the first industrial-quality systems programming language that is as expressive and enjoyable as a scripting language.

简单的说:

  1. Swift用来写iOS和OS X程序。(估计也不会支持其它屌丝系统)
  2. Swift吸取了C和Objective-C的优点,且更加强大易用。
  3. Swift可以使用现有的Cocoa和Cocoa Touch框架。
  4. Swift兼具编译语言的高性能(Performance)和脚本语言的交互性(Interactive)。

Swift语言概览

// Playground - noun: a place where people can play

import Cocoa

var str = "Hello, playground"
var str1 = "Hello Wrold!!!"
var str2 = "O(∩_∩)O哈哈~"

// Hello, world
println("Hello, world")


// 变量与常量
// Swift 使用 var 声明 变量 , let 声明常量
var myVariable = 42
myVariable = 50
let myConstant = 42

// 类型推导
let explicitDouble : Double = 70

// Swift 不支持隐式 类型转换 (所以需要显式类型转换)
let label = "The width is"
let width = 94
let width1 = label + String(width)

// 使用 \(item) 的形式进行 字符串格式化
let apples = 3
let orages = 5
let sum = "I have \(apples) apples."
let sum1 = "I have \(apples + orages) pieces of fruit."

// 数组和字典
// Swift 使用[] 操作符声明 数组(array)和字典 (dictionary)
var listArr = ["fish","water","apple","rice"]
listArr[1] = "bottle of water"

var dict = [
    "name": "melody",
    "age" : "26",

]
dict["sex"] = "female"

// 一般使用初始化器(initializer)语法创建空数组和空字典

let emptyArray = String[]()
let emptyDict = Dictionary<String, Float>()

Xcode贴图

 

 

 

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
swift 第八课 CollectView的 添加 footerView 、headerView发布时间:2022-07-13
下一篇:
Swift中字符串转化为Class的方法发布时间:2022-07-13
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap