- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使我的代码正常运行,除了警告是在编译时发出的事实之外,因为我自己学习,所以我真的不知道这些警告来自何处。如何修改代码(介于FIXME BEGIN和FIXME END之间)以使代码在没有警告的情况下进行编译?
代码:
protocol EqualsMethod {
// Notice that the type-keyword "Self" helps to solve the
// curriously recurring interface pattern for direct self-reference
// FIXME-begin
func equality(my: Self) -> Bool;
// FIXME-end
}
struct my_int : EqualsMethod {
// FIXME-begin
func equality(my: my_int) -> Bool{
if (my.value == value){
return true;
}
return false
}
// FIXME-end
var value: Int;
}
// Returns the index of an element if it exists
// nil otherwise
func findIndex
// FIXME-begin
<T: EqualsMethod>
// FIXME-end
(valueToFind: T, array:[T]) -> Int? {
// FIXME-begin
for (k, e) in array.enumerated(){
if (valueToFind.equality(my: e))
{
return k;
}
}
// FIXME-end
// Index not found
return nil
}
let ints = [my_int(value: 1),
my_int(value: 2),
my_int(value: 3),
my_int(value: 4),
my_int(value: 5)]
print(findIndex(valueToFind: my_int(value: 2), array: ints))
print(findIndex(valueToFind: my_int(value: 0), array: ints))
Optional(1)
nil
main.swift:49:7: warning: expression implicitly coerced from 'Int?' to 'Any'
print(findIndex(valueToFind: my_int(value: 2), array: ints))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
main.swift:49:7: note: provide a default value to avoid this warning
print(findIndex(valueToFind: my_int(value: 2), array: ints))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
?? <#default value#>
main.swift:49:7: note: force-unwrap the value to avoid this warning
print(findIndex(valueToFind: my_int(value: 2), array: ints))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!
main.swift:49:7: note: explicitly cast to 'Any' with 'as Any' to silence this warning
print(findIndex(valueToFind: my_int(value: 2), array: ints))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
as Any
main.swift:50:7: warning: expression implicitly coerced from 'Int?' to 'Any'
print(findIndex(valueToFind: my_int(value: 0), array: ints))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
main.swift:50:7: note: provide a default value to avoid this warning
print(findIndex(valueToFind: my_int(value: 0), array: ints))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
?? <#default value#>
main.swift:50:7: note: force-unwrap the value to avoid this warning
print(findIndex(valueToFind: my_int(value: 0), array: ints))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
!
main.swift:50:7: note: explicitly cast to 'Any' with 'as Any' to silence this warning
print(findIndex(valueToFind: my_int(value: 0), array: ints))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
as Any
最佳答案
findIndex()
返回Int?
,然后print()
将其强制为Any
。
从警告开始,应用建议的修复程序之一:
print(findIndex(valueToFind: my_int(value: 2), array: ints) ?? -1) // one option
print(findIndex(valueToFind: my_int(value: 2), array: ints)!) // another option, may crash
print(findIndex(valueToFind: my_int(value: 2), array: ints) as Any) // third option
关于swift - SWIFT : warnings upon compilation but good behaviour,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60913997/
这个问题在这里已经有了答案: What is the rationale behind decltype behavior? (3 个答案) 关闭 5 年前。 int i = 12; decltyp
这个问题在这里已经有了答案: Undefined, unspecified and implementation-defined behavior (9 个回答) 关闭 4 年前。 C 标准 (AF
我提到了 This Question但没有答案对我有用。所以基本上我有一个 BottomNavigationView,它在向下滚动时隐藏并在向上滚动时显示。当我通过触摸滚动 Recycler View
我正在寻找一种利用mDNS,floodsub和kademlia DHT的网络行为。到目前为止,我已经使所有这些服务都可以使用,但是还不能将这些服务的响应用于有意义的事情。 理想情况下,我将能够将来自行
此代码适用于我的网站: $(function(){ $('.link-follow-stop').on('click', function(event){ console.lo
private synchronized Map calculateStanding() { System.out.println("Calculate standing for
我最近正在测试 的点击事件(点击后找到一个文本框)并发现了一些不寻常的东西。 在 HTML 标记中, 如果在里面, 上面的点击事件标签触发了两次 如果在之外,点击事件为按预期运行 为了更好地理解我要
我尝试了以下两种情况: void ssss(int b){ System.out.println ("int"+b); } void ssss(double b){ System.out.
由于截止日期的压力,我可能会忽略一些东西。但是这种行为令我惊讶。 好像游标缓存了100行,而continue语句刷新了缓存 并从获取新缓存的第一条记录开始。 我将其范围缩小到以下脚本: drop ta
我是德尔福的新手。在 TStrem 类的文档中,我读到它是一个抽象类。所以我认为当我尝试使用 创建它时编译器会出错 stream := TStream.Create(); 为什么不呢? 最佳答案 De
在 Bjarne Stroustrup 的“C++ 之旅”(第二版)的第 18 页上,他指出“对于几乎所有类型,读取或写入未初始化变量的效果是未定义的”。 我明白为什么读取未初始化的变量是未定义的行为
我正在尝试使用两个线程的代码,一个线程递增共享长变量,另一个线程递减 var。 class Shared { private long a; public void incr() {
我们都听过这样的警告:如果您在 C 或 C++ 中调用未定义的行为,任何事情都可能发生。 这是否仅限于任何运行时行为,还是还包括任何编译时行为?特别是,编译器在遇到调用未定义行为的构造时是否允许拒绝代
我在 C++ 中编写了一个简单的函数来计算具有长度、宽度和高度的 Box 对象的体积。这是一个类的一部分,所以 l,b,h是私有(private)成员: long long CalculateVolu
我对以下声明有一些疑问: SELECT 1 FROM dual WHERE DECODE(1, 0, (SELECT COUNT(*) from tbl
我正在做一项作业,要求我编写一些 unix 的 ls 代码。我遇到问题的部分是 -R 选项。 一些背景:我使用的结构包含 2 个列表,一个用于文件,另一个用于运行 ls 时作为参数传递的目录。如果除了
我正在开发一个使用 Spring 数据 的 Java Spring 项目。 它使用 repositories 在狗被主人收集时从 Kennel Object 中移除 Dog Objects。 请注意,
我有一个 NSMutableArray,我分配给它: NSMutableArray *newElements = [[NSMutableArray alloc] initWithObjects:sel
我很少使用 Python,所以我不清楚为什么允许这样的行为:没有 w 对象,因此它没有 s 属性,那为什么 f 允许进行 w.s 赋值? >>> def f(): w.s="ads" #al
我有一个网站,其中一些元素具有 position: fixed。它在桌面浏览器上看起来不错,但在我的手机(Xperia Arc,Android 2.3)上,这些元素会随着页面滚动,直到您从屏幕上松开手
我是一名优秀的程序员,十分优秀!