Answers for "kotlin apply"

4

kotlin also

| Function | Object reference | Return value   | Is extension function                        |
|----------|------------------|----------------|----------------------------------------------|
| let      | it               | Lambda result  | Yes                                          |
| run      | this             | Lambda result  | Yes                                          |
| run      | -                | Lambda result  | No: called without the context object        |
| with     | this             | Lambda result  | No: takes the context object as an argument. |
| apply    | this             | Context object | Yes                                          |
| also     | it               | Context object | Yes                                          |
Posted by: Guest on January-04-2021
1

apply in kotlin

fun main(args: Array<String>) 
{ 
    data class GFG(var name1 : String, var name2 : String,var name3 : String) 
    // instantiating object of class 
    var gfg = GFG("Geeks","for","hi") 
    // apply function invoked to change the name3 value 
    gfg.apply { this.name3 = "Geeks" } 
    println(gfg) 
}
Posted by: Guest on March-22-2021
0

kotlin apply

return EditAccessoryFragment().apply {
    arguments = bundleOf(ACCESSORY_ID_LABEL to accessoryID)
}
Posted by: Guest on January-23-2021

Browse Popular Code Answers by Language