integer – Swift将UInt转换为Int

前端之家收集整理的这篇文章主要介绍了integer – Swift将UInt转换为Int前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个表达式返回一个UInt32:
let randomLetterNumber = arc4random()%26

我想能够使用这个if语句中的数字:

if letters.count > randomLetterNumber{
    var randomLetter = letters[randomLetterNumber]
}

这个问题是控制台给我这个

Playground execution Failed: error: <REPL>:11:18: error: could not find an overload for '>' that accepts the supplied arguments
if letters.count > randomLetterNumber{
   ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~

问题是UInt32不能与Int比较。我想把randomLetterNumber转换为Int。我努力了:

let randomLetterUNumber : Int = arc4random()%26
let randomLetterUNumber = arc4random()%26 as Int

这两个原因都无法找到接受提供的参数的’%’的重载。

如何转换值或在if语句中使用它?

Int(arc4random_uniform(26))做两件事,一个它消除了你当前的方法的负面结果,第二个应该从结果中正确地创建一个Int。
原文链接:https://www.f2er.com/swift/320911.html

猜你在找的Swift相关文章