How does Scala get type safety on the f method String interpolation. The StringContext.f method takes args of Any. So how is it able to tell whether an Int, Double etc are required:

def f(args: Any*): String

有帮助吗?

解决方案

Method f is implemented as macro.

In compile time macro implementation is called. Here is the source or implementation.

Method f is defined as def f(args: Any*): String, but macro implementation can get actual parameters types (as args: List[Tree]) and actual string content.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top