- 279 名前:経団連 mailto:sage [2019/05/15(水) 22:11:28.38 ID:lIe3zIuL.net]
- public bool IsEven(int x)
{ IEven o =this; return !o.IsOdd(x); } これはoがthisの別名になるから public bool IsEven(int x) { return !this.IsOdd(x); } と同じ。さらに public bool IsEven(int x) { return !IsOdd(x); } と同じ。 👀 Rock54: Caution(BBR-MD5:1341adc37120578f18dba9451e6c8c3b)
|

|