Hi all
Could someone please explain me the function Integer.parse the last argument base
what does it means?
This example
Integer.parse("f4", 16)
Why is the output:
{244, ""}
not an error.
Thanks
1 Like
Because you are parsing a hexadecimal number
1 Like