What does data mean here

data class Fruit {

}

what does data mean here

Data is modifier which is written before before keyword ‘class’.It overwrites certain functions lik toString, equals etc.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.

Okay sir got an intution but not clear as such , what will happen if i don’t write data before class name

These methods won’t be overriden and then you have define these methods by yourself

1 Like

For example just try to use toString method with and without data modifier.

okay sir , thankyou sir , got it :+1: