Method Variable « Java Source And Data Type « SCJP
Home
SCJP
1.
Java Source And Data Type
2.
Operators
3.
Modifiers
4.
Type Casting
5.
Statements
6.
Object Oriented
7.
Thread
8.
Utility Classes
9.
File
SCJP
»
Java Source And Data Type
»
Method Variable
1.21.Method Variable
1.21.1.
Local (Automatic/Stack/Method) Variables
1.21.2.
local variables can be marked final.
1.21.3.
Local variable has its scope limited to the method who declares it
1.21.4.
It is legal to declare a local variable with the same name as an instance variable; this is called "shadowing".
1.21.5.
Attempt to use a loop variable outside the code block of the loop.
1.21.6.
Local Object References
1.21.7.
Shadow an instance variable by declaring a local variable of the same name directly or as part of an argument
1.21.8.
Shadowed variable is an object reference
www.java2java.com
|
Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.