エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Groovy Goodness: Implementing MetaClass Methods with Same Name but Different Arguments
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Groovy Goodness: Implementing MetaClass Methods with Same Name but Different Arguments
Using the metaClass property of a class we can add new methods or override existing methods of th... Using the metaClass property of a class we can add new methods or override existing methods of the class. If we want to add a new methods that have the same name, but different arguments, we can use a shortcut notation. Groovy allows us to chain multiple leftShift() (<<) methods together. String.metaClass.groovy << { Integer number -> delegate * number } << { String s -> delegate + s } << { -> del
2009/12/31 リンク