الفرق بين المراجعتين لصفحة: «Kotlin/Float/NaN»

من موسوعة حسوب
< Kotlin‏ | Float
أنشأ الصفحة ب'<noinclude>{{DISPLAYTITLE: الثابتة <code>Float.NaN</code> في لغة Kotlin}}</noinclude> <code>NaN</code> هي ثابتة تحتوي قيمة اللانهاية...'
 
لا ملخص تعديل
سطر 1: سطر 1:
<noinclude>{{DISPLAYTITLE: الثابتة <code>Float.NaN</code> في لغة Kotlin}}</noinclude>
<noinclude>{{DISPLAYTITLE: الثابتة <code>Float.NaN</code> في لغة Kotlin}}</noinclude>
<code>NaN</code> هي ثابتة تحتوي قيمة اللانهاية السالبة للنوع <code>[[Kotlin/Float/index|Float]]</code>.
<code>NaN</code> هي ثابتة تحتوي القيمة "ليس عددًا" (not a number) للنوع [[Kotlin/Float/index|<code>Float</code>]].
==البنية العامة==
==البنية العامة==
<syntaxhighlight lang="kotlin">
<syntaxhighlight lang="kotlin">
val NEGATIVE_INFINITY: Float  
val NaN: Float  
 
</syntaxhighlight>
</syntaxhighlight>


سطر 13: سطر 12:
<nowiki/><syntaxhighlight lang="kotlin">
<nowiki/><syntaxhighlight lang="kotlin">
     fun main(args: Array<String>) {     
     fun main(args: Array<String>) {     
         println(Float.NEGATIVE_INFINITY )// -Infinity
         println(Float.NaN)// NaN
     }
     }
</syntaxhighlight>
</syntaxhighlight>
سطر 20: سطر 19:


==مصادر==
==مصادر==
* [https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/-n-e-g-a-t-i-v-e_-i-n-f-i-n-i-t-y.html الثابتة Float.NaN في التوثيق الرسميّ للمكتبة القياسيّة في لغة Kotlin.]
* [https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/-na-n.html الثابتة Float.NaN في التوثيق الرسميّ للمكتبة القياسيّة في لغة Kotlin.]
[[تصنيف:Kotlin]]
[[تصنيف:Kotlin]]
[[تصنيف:Kotlin constant]]
[[تصنيف:Kotlin constant]]

مراجعة 12:21، 3 يوليو 2018

NaN هي ثابتة تحتوي القيمة "ليس عددًا" (not a number) للنوع Float.

البنية العامة

val NaN: Float

القيمة المُعادة

عدد من النوع Float.

أمثلة

استخدام الثابتة NaN

    fun main(args: Array<String>) {    
        println(Float.NaN)// NaN
    }

أنظر أيضًا

  • POSITIVE_INFINITY‎ : هي ثابتة تحتوي قيمة اللانهاية الموجبة للنوع Float

مصادر