Unicode - Scala打印平方根符号

时间:2016-06-13 14:13:16

标签: scala

我正在使用

println("\u221A")

它打印别的东西。 enter image description here

REPL输出 - Windows 7 64位

enter image description here

如何打印平方根符号?

1 个答案:

答案 0 :(得分:3)

您的代码在我的机器上打印平方根符号(MacOS X 10.11.5,iTerm2 3.0.20160604-nightly,zsh 5.0.8(x86_64-apple-darwin15.0))

Welcome to Scala version 2.10.2 (Java HotSpot(TM) 64-Bit Server VM, Java 1.8.0_25).
Type in expressions to have them evaluated.
Type :help for more information.

scala> println("\u221A")
√

这可能与您控制台的字符集有关。

请注意,您也可以这样做:

println("√")

因为Scala源代码与Unicode兼容。