Skip to content
This repository has been archived by the owner on Feb 8, 2022. It is now read-only.

Default Value #25

Closed
poovarasanvasudevan opened this issue Nov 11, 2016 · 1 comment
Closed

Default Value #25

poovarasanvasudevan opened this issue Nov 11, 2016 · 1 comment

Comments

@poovarasanvasudevan
Copy link

Is i able to set default value like createdDate = current time

@florent37
Copy link
Owner

actually it's already possible

eg:

    int createdDate;
    int age;
    String name;
    
    public User(){
         createdDate = System.currentTimeMillis();
    }

    public User(int age, String name) {
        this();
        this.age = age;
        this.name = name;
    }

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants