📅  最后修改于: 2023-12-03 15:10:00.916000             🧑  作者: Mango
在 Swift 中,使用 print()
函数可以向 Console 输出文本字符串,这是最常用的输出方法之一。在本文中,我们将介绍如何使用 print()
函数在 Swift 中打印一行文本。
以下是一个简单的示例,用于在 Console 上打印一行文本:
print("Hello, World!")
在运行这个程序时,你应该会在 Console 窗口中看到一个类似于下面的输出:
Hello, World!
print()
函数还有一个很有用的功能就是可以格式化输出。你可以使用占位符 %
来代表要输出的参数,然后向 print()
函数传递这些参数。下面是一个使用 %
占位符的示例:
let num1 = 1
let num2 = 2
let sum = num1 + num2
print("The sum of %d and %d is %d", num1, num2, sum)
在运行这个程序时,你应该会在 Console 窗口中看到一个类似于下面的输出:
The sum of 1 and 2 is 3
print()
函数还支持可变参数。这意味着你可以向函数传递任意数量的参数。下面是一个使用可变参数的示例:
func printAll(items: Any...) {
for item in items {
print(item)
}
}
printAll(items: "Swift", "is", "awesome")
在运行这个程序时,你应该会在 Console 窗口中看到一个类似于下面的输出:
Swift
is
awesome
使用 print()
函数可以轻松地在 Console 上输出文本。你可以使用占位符、可变参数等功能来格式化输出。同时,Swift 还支持多种方式的控制台输出,包括 debugPrint()
、dump()
等等。