Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-15-2007, 06:28 PM
Senior Member
 
Join Date: Nov 2007
Posts: 111
bugger is on a distinguished road
type mismatch: cannot convert from double to float
I have following line of code:

Code:
float average = 12.2;
It gives me following error

Code:
Type mismatch: cannot convert from double to float
I tried few things and was able to fix it using:

Code:
float average = 12.2f;
I don't know why f is required with float value. Please explain.
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 11-15-2007, 11:18 PM
Senior Member
 
Join Date: Jul 2007
Posts: 1,189
hardwired is on a distinguished road
The default in java is that a primitive with a decimal in it is a double. For the lower precision float type we need to specify with a trailing "F", "f" or cast the value to float.
Same applies with int and long types using "L", "l" or long cast.
See paragraph 3 under the Literals header on Primitive Data Types.
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 11-16-2007, 02:24 PM
Senior Member
 
Join Date: Nov 2007
Posts: 111
bugger is on a distinguished road
Thanks for the reference. It really helped.
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I convert a decimal value to hexadecimal with double precision (64 bit) SKaur New To Java 7 01-12-2008 10:02 PM
convert string to a double? javaMike Advanced Java 2 11-27-2007 04:10 AM
convert string to float miss_dot NetBeans 1 11-15-2007 12:26 AM
Help with convert a double type number trill New To Java 1 08-06-2007 09:48 AM
Error with convert to Float cachi New To Java 1 08-06-2007 03:18 AM


All times are GMT +3. The time now is 06:11 AM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org