|
Groovy example source code file (Groovy3868Bug.groovy)
The Groovy Groovy3868Bug.groovy source code
package groovy.bugs
class Groovy3868Bug extends GroovyTestCase {
void testAsTypeCallWithPrimitiveType() {
callAndcheckResults(Long)
callAndcheckResults(Integer)
callAndcheckResults(Short)
callAndcheckResults(Byte)
callAndcheckResults(Character)
callAndcheckResults(Double)
callAndcheckResults(Float)
}
def callAndcheckResults(klazz) {
def num = "1"
def result = num.asType(klazz.TYPE) // get the primitive type of this class
if(klazz == Character) num = num as char // Character.valueOf(String) is not there
assert result == klazz.valueOf(num)
assert result.class == klazz
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy Groovy3868Bug.groovy source code file: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.