옥탑방주인/Scala
함수(function)
옥탑방주인
2017. 6. 12. 19:10
def (식별자) = (표현식)
def test = "Hello, World!" |
def function_name(function parameter): return_type = {
codes...
}
def areaRect(x: Float, y: Float): Float = { } |
val arr = Array(1, 2, 3, 4, 5)
arr = Array(100, 200) <-- x
값은 바꿀 수 있지만 references들은 바꿀 수 없음.