Questions tagged «scala»

1
删除brew安装的软件包
包裹名称:sbt 路径:/ usr / local / cellar / sbt 我尝试了什么 sudo rmdir sbt -i在我的终端上,但收到“ rmdir: sbt: Directory not empty”
37 homebrew  scala 

1
为什么Windows控制台中的“>”命令不能将所有消息重定向到文件?
我正在尝试使用sbt构建一个Scala项目,所以我运行了一个命令: sbt clean test > log.log 这意味着sbt工具写入Windows控制台的所有消息均应写入“ log.log”文件。但是有时我将stacktrace写入控制台而不是写入文件: C:\path>sbt clean test > log.log java.lang.ExceptionInInitializerError at scala.concurrent.impl.Future$PromiseCompletingRunnable.liftedTree1$1(Future.scala:24) at scala.concurrent.impl.Future$PromiseCompletingRunnable.run(Future.scala:24) at scala.concurrent.impl.ExecutionContextImpl$AdaptedForkJoinTask.exec(ExecutionContextImpl.scala:121) at scala.concurrent.forkjoin.ForkJoinTask.doExec(ForkJoinTask.java:260) at scala.concurrent.forkjoin.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1339) at scala.concurrent.forkjoin.ForkJoinPool.runWorker(ForkJoinPool.java:1979) at scala.concurrent.forkjoin.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:107) Caused by: java.lang.ClassCastException: Class org.infinispan.configuration.parsing.Parser60 does not implement org.infinispan.configuration.parsing.ConfigurationParser 为什么“>”命令不能将所有消息重定向到文件?


1
IntelliJ Idea调试表达式评估
我正在使用IntelliJ想法社区版(使用Scala),我正在尝试评估表达式。我点击Alt-F8在调试模式下打开它,然后切换到'Code Fragment Mode'。但是,我只允许评估已经存在于内存中的变量,并且不允许声明新的变量。当我这样做时,我得到 - '不支持变量评估'。是否有一个插件,我可以在调试模式下使用它来评估任意代码? 谢谢。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.