我是一名研究学习Swift的设计师,我是初学者.
我没有任何经验.
我正在尝试使用Xcode游乐场中的基本代码创建一个小费计算器.
这是我到目前为止所拥有的.
var billBeforeTax = 100 var taxPercentage = 0.12 var tax = billBeforeTax * taxPercentage
我收到错误:
Binary operator ‘*’ cannot be applied to operands of type ‘Int’ and ‘Double’
这是否意味着我不能倍增双打?
我错过了变量和双打的任何基本概念吗?
您只能有两个相同的数据类型.
原文链接:https://www.f2er.com/swift/319986.htmlvar billBeforeTax = 100 // Interpreted as an Integer var taxPercentage = 0.12 // Interpreted as a Double var tax = billBeforeTax * taxPercentage // Integer * Double = error
如果你这样声明billBeforeTax ..
var billBeforeTax = 100.0
它将被解释为Double,乘法将起作用.或者您也可以执行以下操作.
var billBeforeTax = 100 var taxPercentage = 0.12 var tax = Double(billBeforeTax) * taxPercentage // Convert billBeforeTax to a double before multiplying.