Core Java| JSP| Servlets| XML| EJB| JEE5| Web Services| J2ME| Glossary| Questions?

 

 

 

 

 

 

 

 

 

 

 

 

 

Search Tutorials

Latest Questions
Comments
 
Java BigDecimal divideToIntegral example 
 

In this example working of divideToIntegral(BigDecimal divisor) method is shown.

 

Java BigDecimal divideToIntegral example

                         

In this example working of divideToIntegral(BigDecimal divisor) method is shown. Method divides the bigdecimal class object value on which it is invoked, by the bigdecimal class object value passed inside the parentheses of the method. Shortly it can said as method divides this.object value by the value of object passed.

The scale of the quotient is the scale of the value of object in which the method is invoked minus the scale of the value of object specified. In short scale of quotient is (this.object value scale) - (object.value scale).

The result 'quotient' will always possess integer format. This means method will only generate the integer 
part, i.e. the portion of 'quotient' before decimal. 
Method throws Arithmetic Exception when the divisor value is equal to zero.

Syntax for using the method:

public BigDecimal divide(BigDecimal divisor)

System.out.println(bigdecimalObject_dividendName.divide(bigdecimalobject_divisorName));

Java_BigDecimal_divideToIntegral_Bigdecimal_divisor.java

import java.math.BigDecimal;

public class Java_BigDecimal_divideToIntegral_Bigdecimal_divisor {
  public static void main(String args[]) {

    BigDecimal susan = new BigDecimal(400);
    BigDecimal nelson = new BigDecimal(3);

    BigDecimal Planetarium = 
              susan.divideToIntegralValue(nelson), ancient[] = susan

        .divideAndRemainder(nelson);
    System.out.println
    (
"Java Bigdecimal class \n\tdivideToIntegral(Bigdecimal divisor"
            ") method example");
    System.out.println("\nBigdecimal class, Planetarium object values "
        "\nQuotient(part before decimal) : " + Planetarium
        "\nRemainder : " + ancient[1]);
  }
}


Download the code

                         

» View all related tutorials
Related Tags: java c exception forms class orm form object io objects integer method format type double decimal gd value number name

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Training Courses
Tell A Friend
Your Friend Name
Software Solutions
Least Viewed
Most Rated
Recently Viewed
Search Tutorials

 

 
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Flex Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.