- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
因此,我一直在研究Kotlin,最近我根据所使用的硬币对此类进行了编码,该类代表一定数量的英国便士:
data class PenceAmount(
val one: Int,
val two: Int,
val five: Int,
val ten: Int,
val twenty: Int,
val fifty: Int,
val pound: Int,
val twoPound: Int) {}
PenceAmount
运算符添加两个
+
对象,所以我这样做了:
operator fun plus(other: PenceAmount) : PenceAmount {
return PenceAmount(this.one + other.one,
this.two + other.two,
this.five + other.five,
this.ten + other.ten,
this.twenty + other.twenty,
this.fifty + other.fifty,
this.pound + other.pound,
this.twoPound + other.twoPound)
}
最佳答案
我认为我将以与您相同的方式编写函数plus
。但是,即使我不建议在这种情况下应用它,我也会给您答案的答案。
Is there a way to iterate on the properties of an object to perform this addition concisely?
compile "org.jetbrains.kotlin:kotlin-reflect:1.1.51"
plus(PenceAmount)
:
operator fun plus(other: PenceAmount): PenceAmount {
// Get the primary constructor.
val primaryConstructor = PenceAmount::class.primaryConstructor ?:
throw NullPointerException("The primary constructor can't be found.")
// Get the properties before the loop.
val memberProperties = PenceAmount::class.declaredMemberProperties
// Loop on each constructor parameter and get the new
// values used to create a new instance of PenceAmount.
val newValues = primaryConstructor.parameters.map { parameter ->
// Find the KProperty with the same name of the parameter (because we are in a data class).
val property = memberProperties.first { it.name == parameter.name }
// Sum the amount.
property.get(this) as Int + property.get(other) as Int
}
// Create a new instance of PenceAmount with the new values.
return primaryConstructor.call(*newValues.toTypedArray())
}
关于kotlin - 简洁地在Kotlin中对类属性进行加法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46858702/
我正在用 C# 编写动态语言的解释器,并将原始函数实现为具有虚拟 Apply 方法的抽象类 Primitive,其中每个实际原始函数都是重写 Apply 的子类。 (另一种方法是只拥有类 Primit
我正在用 C# 编写动态语言的解释器,并将原始函数实现为具有虚拟 Apply 方法的抽象类 Primitive,其中每个实际原始函数都是重写 Apply 的子类。 (另一种方法是只拥有类 Primit
我是 Dapper 的新手我正在尝试了解它实际上是如何映射事物的。我有以下数据库结构: calendar | Id | Name | meeting_room | Id | Calendar_id
抱歉问题标题很糟糕。有没有办法在一行中做到这一点: Button button = (Button)Gridview.Cells[0].FindControl("controlname"); butt
在 Java 中在声明点和使用点声明列表/数组文字的tersest方法是什么? 作为次要问题,我更喜欢一种不会导致编译时警告或要求抑制警告的方法。 注意:就我个人而言,这是针对Java 8ish on
什么是现代、简洁、快速的方法来测试节点是否有任何与给定选择器匹配的子节点? “简洁”是指类似于 jQuery 或函数式风格,例如避免循环。我知道本地选择器越来越多地使用这种类型的东西,但没有跟上发展的
getFirstNotNullResult 执行函数列表,直到其中一个函数返回非空值。 如何更优雅/简洁地实现 getNotNullFirstResult? object A { def main
根据 stackoverflow 上某人的推荐,我使用了 jquery succint https://github.com/micjamking/Succinct截断我在 php 网站上的帖子。 它
我是一名优秀的程序员,十分优秀!