如何在swift中将变量或常量设置为特定类型[已关闭]

brqmpdu1  于 2023-01-08  发布在  Swift
关注(0)|答案(1)|浏览(90)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question
我是swift的新手,我想知道如何将变量或常量设置为特定类型
我在添加var myVar = Date()时遇到了一些问题
有人能帮忙吗

68bkxrlz

68bkxrlz1#

欢迎来到stackoverflow
若要将常数或变量设置为特定类型,请使用以下命令。
变量:

var currentDate:Date = Date()

常数:

let currentDate:Date = Date()

你需要加上冒号然后加上类型

相关问题