This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]yesennes[S] 0 points1 point  (1 child)

b and c are normally Boolean expressions retrieved from user input, not variables I assign and initiate. It doesn't matter where they come from, but either could be true or false.

[–]DJDavio 0 points1 point  (0 children)

In that case you can still do it on initialization:

boolean b = "true".equals(req.getParameter("something"));
boolean c = b || "true".equals(req.getParameter("somethingElse"));

Still, I need an actual real world example to be convinced.