I'm trying to understand what this line does, but being a pretty new Java programmer I am getting a little confused. Any help would be appreciated!
JComponent container = menu == null ? popupMenu : menu;
|
I'm trying to understand what this line does, but being a pretty new Java programmer I am getting a little confused. Any help would be appreciated!
|
|||||||||||||||
|
|
|||||||||||||||
|
|
It is equal to the following:
|
|||||||||||
|
|
It's the ternary operator, which is a shorthand form for a simple if/else statement. In this case
The operator was first made available in C and consequently occurs in most C derived languages (Java, C++, C#, Javascript etc.) Ternaries are extremely useful for writing compact code and are no less readable than an if/else once you get used to them. However there is sometimes a tendency to embed ternary conditions inside ternary conditions, such as
Which sets a to d if b equals c, or if b is not equal to c then either g or h depending on whether e equals f. Whilst succinct this sort of code can deteriorate into difficult to read bug inclined statements quite fast. Where should you use them? Personally I tend use ternaries predominantly for initializations and other situations where the decision is going to remain simple, for example testing if a GET parameter is available in PHP and defaulting if not.
On the other hand if my condition is inside a block of code and is concerned with the main logic flow of the program then I would be more likely to use an if/else, even if the actions are one line each. This is both because it tends to reduce maintenance bugs later, and as as if/else's are indented then it's also clearer at a glance what's happening to the logic. |
||||
|
|
|
It compares menu to null and uses popupMenu (if it was null) or menu (if it wasn't) to initialize container. Maybe it is easier to read with extra parenthesis:
|
|||
|
|
|
It sets container to menu, unless menu is null in which case it sets container to popupMenu instead. In other words, popupMenu is acting as a default value. |
|||
|
|
|
It is the equivalent of
|
|||
|
|
|
Pseudo:
|
|||
|
|
|
http://www.php.net/manual/en/language.operators.comparison.php#language.operators.comparison.ternary it's php analog, see this documentation |
|||
|
|
|
Sometimes I write my ternary operators like this:
|
|||||
|
|
Note that the two result parts of a ternary condition need to be compatible in type and assignable to any preceding variable. So you can do:
because both String and Date are assignable to Object. But not:
Nor:
|
|||
|
|
|
|||||||||||||
|
|
It's ternary operator. Equivalent to:
JComponent container = (condition) ? (if_true) : (if_false); |
|||||
|