博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Swift中的函数常见写法
阅读量:6291 次
发布时间:2019-06-22

本文共 1861 字,大约阅读时间需要 6 分钟。

这里不涉及函数作为参数和返回值的情况。

进军iOS开发了哈。

计划六一前,搞一个套H5的App出来,

靠谱么?

其实,看过了java,php,javascript,python,go之后,

再在看swift,感觉很亲切啊,

都是老熟人。

func greet(person: String) -> String {	let greeting = "Hello, " + person + "!"	return greeting}print(greet(person: "Anna"))print(greet(person: "Brian"))func sayHelloWorld() -> String {	return "hello, world"}print(sayHelloWorld())func greet2(person: String) {	print("Hello, \(person)!")}greet2(person: "Dave")func printAndCount(string: String) -> Int {	print(string)	return string.characters.count}func printWithoutCounting(string: String) {	let _ = printAndCount(string: string)}printAndCount(string: "Hello, world")printWithoutCounting(string: "Hello, world")func minMax(array: [Int]) -> (min: Int, max: Int)? {	if array.isEmpty {return nil}	var currentMin = array[0]	var currentMax = array[0]	for value in array[1..
currentMax { currentMax = value } } return (currentMin, currentMax)}if let bounds = minMax(array: [8, -6, 2, 109, 3, 71]) { print("min is \(bounds.min) and max is \(bounds.max)")}func gt(person: String, from hometown: String) -> String { return "Hello \(person)! glad you could visit from \(hometown)."}print(gt(person: "Bill", from: "Cupertino"))func someFunc(_ firstP: Int, secondP: Int) { print(firstP + secondP)}someFunc(1, secondP: 5)func someFunc2(pWithoutD: Int, pWithD: Int = 12) { print(pWithoutD + pWithD)}someFunc2(pWithoutD: 5)func arithmeticMean(_ numbers: Double...) -> Double { var total: Double = 0 for number in numbers { total += number } return total / Double(numbers.count)}print(arithmeticMean(1, 2, 3, 4, 5))print(arithmeticMean(3, 5.34, 12.38, 67, 21.97))func swapTwoInts(_ a: inout Int, _ b: inout Int) { let temporaryA = a; a = b b = temporaryA}var someInt = 3var anotherInt = 107swapTwoInts(&someInt, &anotherInt)print("someInt is now \(someInt), and anotherInt is now \(anotherInt)")

转载地址:http://ofuta.baihongyu.com/

你可能感兴趣的文章
Spring MVC中文文档翻译发布
查看>>
docker centos环境部署tomcat
查看>>
JavaScript 基础(九): 条件 语句
查看>>
Linux系统固定IP配置
查看>>
配置Quartz
查看>>
Linux 线程实现机制分析
查看>>
继承自ActionBarActivity的activity的activity theme问题
查看>>
设计模式01:简单工厂模式
查看>>
项目经理笔记一
查看>>
Hibernate一对一外键双向关联
查看>>
mac pro 入手,php环境配置总结
查看>>
MyBatis-Plus | 最简单的查询操作教程(Lambda)
查看>>
rpmfusion 的国内大学 NEU 源配置
查看>>
spring jpa 配置详解
查看>>
IOE,为什么去IOE?
查看>>
Storm中的Worker
查看>>
dangdang.ddframe.job中页面修改表达式后进行检查
查看>>
Web基础架构:负载均衡和LVS
查看>>
Linux下c/c++相对路径动态库的生成与使用
查看>>
SHELL实现跳板机,只允许用户执行少量允许的命令
查看>>