在swift中乘以变量和双精度

前端之家收集整理的这篇文章主要介绍了在swift中乘以变量和双精度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是一名研究学习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’

这是否意味着我不能倍增双打?

我错过了变量和双打的任何基本概念吗?

您只能有两个相同的数据类型.
var 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.
原文链接:https://www.f2er.com/swift/319986.html

猜你在找的Swift相关文章