Created
June 17, 2017 07:22
-
-
Save ezura/ab2cfee3de41410db840000775ec928b to your computer and use it in GitHub Desktop.
operator のメソッド感
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class A() { | |
| operator fun plus(that: Int): Int { | |
| return that + 1 | |
| } | |
| } | |
| A() + 1 | |
| // error | |
| // 1 + A() | |
| /* インスタンスと密着してる感じがする。演算子もメソッドの雰囲気 */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
swift では
関数関数してる