现在我使用上面的代码将可选项设置为空字符串(如果它是nil)并且如果它具有值则将其解包.这只是三行代码,但对我来说这是一个非常常见的 *** 作,所以我想知道是否有更优雅的方法来做到这一点?
var notesUnwrapped:String = "" if(calendarEvent.notes != nil){ notesUnwrapped = calendarEvent.notes! }解决方法 你可以使用nil合并 *** 作符??
var notesUnwrapped: String = calendarEvent.notes ?? ""
Swift Operators
总结The nil coalescing operator (a ?? b) unwraps an optional a if it contains a value,or returns a default value b if a is nil. The Expression a is always of an optional type. The Expression b must match the type that is stored insIDe a.
以上是内存溢出为你收集整理的swift – 如何设置空字符串为零的选项?全部内容,希望文章能够帮你解决swift – 如何设置空字符串为零的选项?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)