Possible Duplicate:
What is the Java ?: operator called and what does it do?
Hello I have some problems understanding the fallowing code, could anyone help me get this?
private Comparable elementAt( BinaryNode t ) {
return t == null ? null : t.element;
}
I don't understand what t == null ? null : t.element;
means.