作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个必须使用 Double 和 Float 的类。由于性能要求,我对 (Double, Float)
使用带有 @specialized
注释的泛型。我需要调用两个第三方函数。 ffunc(x: Float)
接受Float
,dfunc(y: Double)
接受Double
。在某些时候,我必须调用 ffunc
或 dfunc
。为此,我使用 Scala 模式匹配。我的代码如下所示:
class BoxingTest[@specialized(Double, Float) T] {
def foo(p: T): Unit = {
p match {
case dp: Double => dfunc(dp)
case df: Float => ffunc(df)
}
}
}
但是,scala 编译器为专用版本提供了未优化的字节码。当我查看专用类的字节码时,我看到了将我的专用类型转换为对象的非优化匹配代码。还有额外的装箱/拆箱如下:
41: invokestatic #21 // Method scala/runtime/BoxesRunTime.boxToDouble:(D)Ljava/lang/Double;
44: invokestatic #39 // Method scala/runtime/BoxesRunTime.unboxToDouble:(Ljava/lang/Object;)D
您能否建议将匹配代码替换为将被优化并避免装箱/拆箱的代码?
最佳答案
这是之前提出来的。我认为最好的办法是覆盖专门的方法:
scala> class X[@specialized(Int, Double) A] { def f(a: A): String = ??? }
defined class X
scala> trait T { def f$mcI$sp(i: Int): String = "my int" }
defined trait T
scala> val x = new X[Int] with T
x: X[Int] with T = $anon$1@6137cf6e
scala> x.f(42)
res0: String = my int
那可能是在 SO 上。
关于scala - 模式匹配与专门的 Scala,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34958961/
我有一个带有模板函数的基类,该函数具有通用模板类型和专用版本。 #ifndef BASE_CLASS #define BASE_CLASS #include using namespace std;
我有这个 3D vector 模板 template class Vec3TYPE{ public: union{ struct{ TYPE x,y,z; }; struct{ TY
我是一名优秀的程序员,十分优秀!