Browse tutorials by Category - Classes
Instance Variable Masking (Eclipse)
Time: 3:46
|
|
| Average: 84 ratings | Your Rating: |
| Categories: Logic Error Classes Eclipse | |
| Description: click for more...
Shows what happens when a local variable in a method has the same name as an instance variable in your class and provides 2 ways to fix this problem (instance variable masking). |
|
No class definition found (Command Line)
Time: 1:54
|
|
| Average: 46 ratings | Your Rating: |
| Categories: Runtime Error Classes Command Line | |
| Description: click for more...
This video demonstrates a seemingly meaningless runtime error, which occurs when the name of the class is not the same as the name of the file. |
|
Static Context (Command Line)
Time: 9:02
|
|
| Average: 54 ratings | Your Rating: |
| Categories: Compile Error Logic Error Classes Command Line | |
| Description: click for more...
The compiler generates a “non-static method X cannot be referenced from a static context” message. Shows what happens when a non-static method is called form the static main method. |
|