Browse tutorials by Tag - comparison
Incompatible Types (Eclipse)
Time: 1:05
|
|
| Average: 61 ratings | Your Rating: |
| Categories: Conditional Compile Error Loop Eclipse | |
| Description: click for more...
What to do when you see an incompatible types compiler error in a loop condition or in the condition of an if statement. Shows the effect of using equals (=) instead of equalsequals (==), causing an assignment when you intend to have a equality comparison. |
|
Object Comparison (Eclipse)
Time: 4:15
|
|
| Average: 49 ratings | Your Rating: |
| Categories: Conditional Compile Error Eclipse | |
| Description: click for more...
Demonstrates the use of .equals (dot equals) to compare objects rather than == (Equals equals). The same equality comparison that works for primitives does not work for object types. |
|