File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes Assignments Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "Assignments" Watch "Assignments" New topic
Author

Assignments

Satya Baswa
Greenhorn

Joined: May 06, 2008
Posts: 3
1. final int i=127;
2. byte b=i;

This piece of code works...

1. final int i;
2. i=127;
3. byte b=i;

This piece of code is not working.

What is the difference in the above two pieces of code?
Tarun Kumar
Greenhorn

Joined: Apr 30, 2008
Posts: 26
in first case since final object is assigned it's value at the declarion time hence compiler knows its values is <=127 ,thus allowing to compile.
in second case since final varible is not assigned at the declaration time,hence compiler can not be known about the later assigned value.
thus compiler is not sure wheather value is <=127,thus not allowing to compile.


Tarun Kumar
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Assignments
 
Similar Threads
FINAL VARIABLE DECLARATION
Final variable
Doubt in assignment
why I cann't assign FINAL INT to Byte
I cant believe my eyes?