Double equals (Not equality) during assigning Java
- by FabianCook
When I tried searching this I would just get things on equality.
When I was reading through some documentation for navigation in Android I had come across something I had never seen before. I came across this:
mTitle = mDrawerTitle = getTitle();
It almost looks like something you can do in JavaScript where you can take the first not-null variable and assign it to a variable.
In JavaScript I would do this:
mTitle = mDrawerTitle || getTitle();
And it would return the first not null, in Java, is this double equals usage the equivalent in Java?
What is this type of expression called?