I have got a constructor in Java that uses a string. This string is always going to be a number.
private final String number;
public Number (String s) {
this.number = s;
}
Since this string is always a number in my case I would like this string always to use a certain format. For example, when creating some new Numbers in my main method:
public static void main (String[] args) {
Number one = new Number("1");
Number ten = new Number("10");
System.out.println("Number one is: " + one);
System.out.println("Number ten is: " + ten);
}
I would like it to print out something like this:
Number one is: 000001
Number ten is: 000010
How can I declare such a format in my constructor (in my case it has to be in the constructor)?
EDIT: Again, I know that there are better implementations such as just avoiding to use a string but there are reasons why I use a string (don't ask me why).
