How do I declare a generic variable in Scala without initializing it (or initializing to any value)?
def foo[T] {
var t: T = ???? // tried _, null
t
}
|
|
How do I declare a generic variable in Scala without initializing it (or initializing to any value)?
|
|||
|
|
|
|
And, if you don't like the ceremony involved in that, you can ease it this way:
|
|||
|
|
|
|
You can't not initialize local variables, but you can do so for fields:
|
||