In java, I noticed that there are methods related to converting strings
, and these methods sometimes use the word "parse" in the method name. For example, a static method,
static int parseInt(String str)
used to convert a string
to int
. My question is this. Is βparsingβ short for another word? Is it just a random word, or did it come from somewhere else in some other Java programming context or elsewhere?
source share