I have this little formula:
this.size = size >= MIN_SIZE ? size : MIN_SIZE;
The values are not my problem, but the point is I don't understand what does the symbol >=
is doing over there, and also the ?
and the :
Can anybody explain me what those symbols are doing over there? This is not an IF statement, it's just the beginning of a method.