【发布时间】:2017-09-25 12:34:09
【问题描述】:
我正在学习 Scala,并且正在使用 Martin Odersky 的“Scala 编程”一书。当我在第 10 章中尝试示例时,它并没有产生预期的结果。我试图在这里和那里修改代码,但没有运气。谁能告诉我哪里出错了?
import Element.elem
object Spiral {
val space = elem(" ")
val corner = elem("+")
def spiral(nEdges: Int, direction: Int): Element = {
if(nEdges == 1)
corner
else {
val sp = spiral(nEdges - 1, (direction + 3) % 4)
//println("H: " + sp.height + " W: " + sp.width + " D " + direction)
def verticalBar = elem('|', 1, sp.height - 1) //updated based on google errata which was otherwise def verticalBar = elem('|', 1, sp.height)
def horizantalBar = elem('-', sp.width, 1)
if(direction == 0)
(corner beside horizantalBar) above (sp beside space)
else if (direction == 1)
(sp) beside (corner above verticalBar) //updated based on google errata which was otherwise (sp above space) beside (corner above verticalBar)
else if (direction == 2)
(space beside sp) above (horizantalBar beside corner)
else
(verticalBar above corner) beside (sp) //updated based on google errata which was otherwise (verticalBar above corner) beside (space above sp)
}
}
//Not working as expected, need to debug and fix
def main (args: Array[String]) {
val nSides = args(0).toInt
println(spiral(nSides, 0))
}
}
这是以 14 作为参数运行时的预期
+-------------
|
| +---------+
| | |
| | +-----+ |
| | | | |
| | | +-+ | |
| | | + | | |
| | | | | |
| | +---+ | |
| | | |
| +-------+ |
| |
+-----------+
我得到了什么
+-------------
| +---------+
【问题讨论】:
-
什么是预期的结果? 你会得到什么?
-
哎呀忘了引用什么不起作用