Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can I write require member? #52

Closed
kyubuns opened this issue Apr 1, 2019 · 2 comments
Closed

Can I write require member? #52

kyubuns opened this issue Apr 1, 2019 · 2 comments
Labels
Bug This tag is applied to issues which reports bugs.

Comments

@kyubuns
Copy link

kyubuns commented Apr 1, 2019

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".

struct User {
	id int /*  'require' keyword*/
}

fn main() {
	user1 := User{id: 10}
	user2 := User{} // I want this is error
}
@medvednikov
Copy link
Member

medvednikov commented Apr 1, 2019

Hi @kyubuns

Yes! See this discussion:

#3 (comment)

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).

@kyubuns
Copy link
Author

kyubuns commented Apr 1, 2019

Great.
Thanks!!

@kyubuns kyubuns closed this as completed Apr 1, 2019
larpon pushed a commit to larpon/v that referenced this issue Feb 24, 2022
@medvednikov medvednikov added the Bug This tag is applied to issues which reports bugs. label Jul 19, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug This tag is applied to issues which reports bugs.
Projects
None yet
Development

No branches or pull requests

2 participants