Size: a a a

2019 October 08

MG

Matthew Good in Kotlin Start
how can i make a function accept both an instance of a class and an instance of that classes supertype without requiring an overloaded function
источник

AM

Andrew Mikhaylov in Kotlin Start
The first question you've asked and deleted was the key to the answer.
источник

AL

Alexander Levin in Kotlin Start
Matthew Good
how can i make a function accept both an instance of a class and an instance of that classes supertype without requiring an overloaded function
Just do the function that accept supertype

Great examples from the standard library - extension functions for Iterable like map or filter
источник

MG

Matthew Good in Kotlin Start
ok, why CANT a function accepting A, accept a class instance that has A as its supertype?

for example

open class A() {}
class B: A() {}
fun a(v: A) {}
a(B())
источник

AM

Andrew Mikhaylov in Kotlin Start
https://pl.kotl.in/VrOcWIqP5
It works for me. What am I doing wrong?
источник

AM

Andrew Mikhaylov in Kotlin Start
Apart from the fact that A should be open class or abstract class or interface in your example, as the code you've provided won't even compile.
источник

AM

Andrew Mikhaylov in Kotlin Start
This is exactly the reason why I asked if you've tested that yourself. As soon as you boil down your use-case to simple example, you are able to validate the idea.
источник

MG

Matthew Good in Kotlin Start
wtf why does yours work but mine fail?

https://pl.kotl.in/nrDhSZXee

for mine i get

Type mismatch: inferred type is VectorBase<Type> but VectorCore<Any> was expected

open class VectorCore<Type> {}

open class VectorBase<Type>: VectorCore<Type> {
   fun elementWiseOperation(vector: VectorCore<Any>, action: (result: VectorCore<Any>, lhs: Any, rhs: Any) -> Unit): VectorCore<Any> {}

   fun t() {
       val A = elementWiseOperation(this) {}
   }
}
источник

AM

Andrew Mikhaylov in Kotlin Start
Try Any? instead of Any.
источник

AM

Andrew Mikhaylov in Kotlin Start
Or VectorCore<Type: Any> if you aren't going to work with nulls.
источник

AL

Alexander Levin in Kotlin Start
Matthew Good
wtf why does yours work but mine fail?

https://pl.kotl.in/nrDhSZXee

for mine i get

Type mismatch: inferred type is VectorBase<Type> but VectorCore<Any> was expected

open class VectorCore<Type> {}

open class VectorBase<Type>: VectorCore<Type> {
   fun elementWiseOperation(vector: VectorCore<Any>, action: (result: VectorCore<Any>, lhs: Any, rhs: Any) -> Unit): VectorCore<Any> {}

   fun t() {
       val A = elementWiseOperation(this) {}
   }
}
As we discussed before, for invariant generics VectorCore<Any> != VectorCore<Type>.
If it's applicable you can either provide covariance for generic type or provide different signature for elementWiseOperation function
источник

AM

Andrew Mikhaylov in Kotlin Start
As in general case Generic<T> implicitly means Generic<T: Any?>, which is not a subtype of Generic<Any>.
источник

MG

Matthew Good in Kotlin Start
ok
источник

MG

Matthew Good in Kotlin Start
so if a class should only deal with integers should null be reinterperated as 0 in get and set operators?
источник

AM

Andrew Mikhaylov in Kotlin Start
You are free to decide what better suits your needs.
источник

MG

Matthew Good in Kotlin Start
in what use cases (in generics) would it be appropriate to allow an integer to be null
источник

D

Denys in Kotlin Start
FOX
получается что если класс FileHelper реализует интерфейс DataProvider то можно писать FileHelperImpl : DataProvider?
Продолжаю цепляться. 😁
FileHelperImpl : DataProvider немного отдает.

Либо это FileHelper как контейнер для утилитных методов.
Либо wrapper, реализующий DataProvider<>.

У вас какой случай?
источник

AM

Andrew Mikhaylov in Kotlin Start
Ниже ж ответ.
источник

MG

Matthew Good in Kotlin Start
what if i used a Union or equivilant instead? would that be possible? or would the type need to be explicitly cast as UnionClass
источник

D

Denys in Kotlin Start
Andrew Mikhaylov
Ниже ж ответ.
Ага, теперь понял. Но название тогда очень так-себе. :)
источник