Once again, hi all. I read use keyword in Groovy. But could not come out with, for what it has been exactly been used. And i also come with category classes, under this topic,what is that too? And from, Groovy In Action

class StringCalculationCategory {
  static def plus(String self, String operand) {
    try {
      return self.toInteger() + operand.toInteger()
    } catch (NumberFormatException fallback) {
      return (self << operand).toString()
    }
  }
}

use (StringCalculationCategory) {
  assert 1 == '1' + '0'
  assert 2 == '1' + '1'
  assert 'x1' == 'x' + '1'
}

With the above code, can anyone say what is the use of use keyword in groovy? And also what the above code does?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

See http://groovy.codehaus.org/Pimp+my+Library+Pattern for what use does.

In your case it overloads the String.add(something) operator. If both Strings can be used as integers (toInteger() doesn't throw an exeption), it returns the sum of those two numbers, otherwise it returns the concatenation of the Strings.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.