要某條件成立時才進行某些動作,Ruby提供了if運算式,一個例子如下: filename = "default.properties" if ARGV[0] filename = ARGV[0] end puts filename
確定! 回上一頁