<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://www.jexp.ru/index.php?action=history&amp;feed=atom&amp;title=Java%2FJDK_6%2FFloating_Point_Number</id>
		<title>Java/JDK 6/Floating Point Number - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://www.jexp.ru/index.php?action=history&amp;feed=atom&amp;title=Java%2FJDK_6%2FFloating_Point_Number"/>
		<link rel="alternate" type="text/html" href="http://www.jexp.ru/index.php?title=Java/JDK_6/Floating_Point_Number&amp;action=history"/>
		<updated>2026-04-23T03:23:45Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://www.jexp.ru/index.php?title=Java/JDK_6/Floating_Point_Number&amp;diff=6381&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://www.jexp.ru/index.php?title=Java/JDK_6/Floating_Point_Number&amp;diff=6381&amp;oldid=prev"/>
				<updated>2010-06-01T06:12:24Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 06:12, 1 июня 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	<entry>
		<id>http://www.jexp.ru/index.php?title=Java/JDK_6/Floating_Point_Number&amp;diff=6380&amp;oldid=prev</id>
		<title> в 18:01, 31 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://www.jexp.ru/index.php?title=Java/JDK_6/Floating_Point_Number&amp;diff=6380&amp;oldid=prev"/>
				<updated>2010-05-31T18:01:43Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Math.copySign ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
public class FloastPointDemo {&lt;br /&gt;
  public static void main(String[] args) {&lt;br /&gt;
    // Returns a copySign of the first argument&lt;br /&gt;
    double d = Math.copySign (1234.56, -1);&lt;br /&gt;
    System.out.println (&amp;quot;Math.copySign (1234.56, -1) = &amp;quot; + d);&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
// Math.copySign (1234.56, -1) = -1234.56&lt;br /&gt;
        &amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- end source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Math.getExponent ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
public class FloastPointDemo {&lt;br /&gt;
    public static void main (String[] args) {&lt;br /&gt;
      // Returns the unbiased exponent value of a double,&lt;br /&gt;
      // where 2^exp &amp;lt;= d. In this case, 2^4 &amp;lt;= 17&lt;br /&gt;
      int exp = Math.getExponent (17.0);&lt;br /&gt;
      System.out.println (&amp;quot;Math.getExponent (17.0) = &amp;quot; + exp);&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
//Math.getExponent (17.0) = 4&lt;br /&gt;
        &amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- end source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Math.nextAfter ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
public class FloastPointDemo {&lt;br /&gt;
  public static void main(String[] args) {&lt;br /&gt;
    // Returns the lesser adjacent of a double&lt;br /&gt;
    double lesserAdjacent = Math.nextAfter(123.0, 120.0);&lt;br /&gt;
    System.out.println(&amp;quot;Math.nextAfter (123.0, 120.0) = &amp;quot; + lesserAdjacent);&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
// Math.nextAfter (123.0, 120.0) = 122.99999999999999&lt;br /&gt;
        &amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- end source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Math.nextUp ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
public class FloastPointDemo {&lt;br /&gt;
  public static void main(String[] args) {&lt;br /&gt;
    // Returns the greater adjacent of a double&lt;br /&gt;
    double greaterAdjacent = Math.nextUp(123.0);&lt;br /&gt;
    System.out.println(&amp;quot;Math.nextUp (123.0) = &amp;quot; + greaterAdjacent);&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
// Math.nextUp (123.0) = 123.00000000000001&lt;br /&gt;
        &amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- end source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Math.scalb ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- start source code --&amp;gt;&lt;br /&gt;
   &lt;br /&gt;
    &amp;lt;source lang=&amp;quot;java&amp;quot;&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
public class FloastPointDemo {&lt;br /&gt;
    public static void main (String[] args) {&lt;br /&gt;
        // Returns 12.0 x (2^3)&lt;br /&gt;
        double scalbResult = Math.scalb (12.0, 3);&lt;br /&gt;
        System.out.println (&amp;quot;Math.scalb (12.0, 3) = &amp;quot; + scalbResult);&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
//Math.scalb (12.0, 3) = 96.0&lt;br /&gt;
        &amp;lt;/source&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
   &lt;br /&gt;
  &amp;lt;!-- end source code --&amp;gt;&lt;/div&gt;</summary>
			</entry>

	</feed>