0
是否可以構造一個空範圍?東西會滿足以下測試:空groovy範圍
Range emptyRange = // the magic goes here
assert emptyRange.from == null
assert emptyRange.to == null
是否可以構造一個空範圍?東西會滿足以下測試:空groovy範圍
Range emptyRange = // the magic goes here
assert emptyRange.from == null
assert emptyRange.to == null
如何
Range emptyRange = new EmptyRange()
它可以是任何簡單? – Bart 2013-03-18 19:31:47
謝謝,我被文檔拋出,表明你需要提供一個構造函數arg,我不知道要傳遞什麼。但事實上,你似乎沒有http://groovy.codehaus.org/api/groovy/lang/EmptyRange.html#constructor_summary – 2013-03-18 19:35:37
@Don yeah,文檔可能會更好,因爲它[在源文件中說] (https://github.com/groovy/groovy-core/blob/master/src/main/groovy/lang/EmptyRange.java)_at可以是'null'_ – 2013-03-18 19:44:39