I am learning Context bound in Scala.
In the below code, I am invoking multiplication operator on the integer parameter. But it errors out. 'a' is considered as type parameter; but it is actually not as per my understanding. Can someone please help.
scala> class Sample[T]
defined class Sample
scala> def method[Int:Sample](a:Int) = a * a
<console>:12: error: value * is not a member of type parameter Int
def method[Int:Sample](a:Int) = a * a
Thanks!
The type parameter named
Int
does not represent concrete integer typescala.Int
. Instead it is just a confusing coincidence that the type parameter was given the same nameInt
as the concrete type. If you give it some other name such asT
the error message should make more sense. Now we see
*
is not defined forT
sinceSample
type class does not yet provide such capability. Here is an example of how correct syntactic usage might look usageYou could also have a look at
Numeric
type class which provides such functionality out of the box