I am looking through code and wondering what this means:
Boolean foo = request.getParameter("foo") == null? false:true;
It's gotta be something that converts the returning String from getParameter() into a Boolean.
But I've never seen this kind of Java with a questionmark and colon (except in a foreach loop). Any hel appreciated!
Boolean foo = (request.getParameter("foo") == null) ? false: true;– mauris Aug 4 '10 at 7:56true. – Jonas Elfström Aug 4 '10 at 7:56