You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can I write require member in struct?
I think a struct which has default value is nearly equal null. (ex. User{ id: 0 } )
I don't want to exist them same as null.
What do you think?
Example, I want "User must have id".
struct User {
id int /* 'require' keyword*/
}
fn main() {
user1 := User{id: 10}
user2 := User{} // I want this is error
}
The text was updated successfully, but these errors were encountered:
If a struct has at least one private member (and in your example id is private, since it's the default), it will be impossible to use struct initialization syntax outside the module it's defined in.
So you'll have to provide a constructor method (like new_user() User).
V-lang is very good language!!!
Can I write require member in struct?
I think a struct which has default value is nearly equal null. (ex. User{ id: 0 } )
I don't want to exist them same as null.
What do you think?
Example, I want "User must have
id
".The text was updated successfully, but these errors were encountered: