Avoid smart cast hint in null checks | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Avoid smart cast hint in null checks

Is there anyway I can avoid the smart cast hint after the if in the example bellow? fun foo(): Any { val xpto = bar() if(xpto == null) { // do something fast and return } // do alot of stuff with xpto and return } fun bar(): Any?

13th Jul 2019, 9:58 PM
Chriptus13
Chriptus13 - avatar
1 Answer
0
To avoid the smart cast hint, you can explicitly cast the result of bar() to Any before the if statement, like this: fun foo(): Any { val xpto: Any = bar() ?: return // do something fast and return // do a lot of stuff with xpto and return } fun bar(): Any? Alternatively, you can also use an if expression, like this: fun foo(): Any { return bar() ?: return // do something fast and return // do a lot of stuff with bar() and return } fun bar(): Any? By using either of these techniques, you can avoid the smart cast hint and also simplify your code.
6th Feb 2023, 12:05 PM
Manhar Hadiyal
Manhar Hadiyal - avatar