swift – unicode转义后大括号中的十六进制代码

前端之家收集整理的这篇文章主要介绍了swift – unicode转义后大括号中的十六进制代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这在Swift的第一个测试版中起作用。
var degree = "\u00B0" // degree symbol

现在我得到这个错误,我不明白我需要做什么来纠正它在Xcode 6 Beta 5。

Expected hexadecimal code in braces after unicode escape
正确的代码是:
var degree = "\u{00B0}" // degree symbol

从Xcode 6 beta 4发行说明:

The \x,\u and \U escape sequences in string literals have been consolidated into a single and less error prone \u{123456} Syntax. (17279286)

原文链接:https://www.f2er.com/swift/320712.html

猜你在找的Swift相关文章