الفرق بين المراجعتين لصفحة: «Kotlin/Float/NEGATIVE INFINITY»
أنشأ الصفحة ب'<noinclude>{{DISPLAYTITLE: الدالة <code>Float.NEGATIVE_INFINITY</code> في لغة Kotlin}}</noinclude> <code>NEGATIVE_INFINITY</code> هي ثابتة تحتوي...' |
لا ملخص تعديل |
||
سطر 3: | سطر 3: | ||
==البنية العامة== | ==البنية العامة== | ||
<syntaxhighlight lang="kotlin"> | <syntaxhighlight lang="kotlin"> | ||
val NEGATIVE_INFINITY: | val NEGATIVE_INFINITY: Float | ||
</syntaxhighlight> | </syntaxhighlight> | ||
سطر 13: | سطر 13: | ||
<nowiki/><syntaxhighlight lang="kotlin"> | <nowiki/><syntaxhighlight lang="kotlin"> | ||
fun main(args: Array<String>) { | fun main(args: Array<String>) { | ||
println( | println(Float.NEGATIVE_INFINITY )// -Infinity | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==أنظر أيضًا == | ==أنظر أيضًا == | ||
*<code>[[Kotlin/ | *<code>[[Kotlin/Float /POSITIVE INFINITY|POSITIVE_INFINITY]]</code> : هي ثابتة تحتوي قيمة اللانهاية الموجبة للنوع <code>[[Kotlin/Float/index|Float]]</code> | ||
==مصادر== | ==مصادر== | ||
* [https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/- | * [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.NEGATIVE_INFINITY في التوثيق الرسميّ للمكتبة القياسيّة في لغة Kotlin.] | ||
[[تصنيف:Kotlin]] | [[تصنيف:Kotlin]] | ||
[[تصنيف:Kotlin constant]] | [[تصنيف:Kotlin constant]] |
مراجعة 12:07، 3 يوليو 2018
NEGATIVE_INFINITY
هي ثابتة تحتوي قيمة اللانهاية السالبة للنوع Double
.
البنية العامة
val NEGATIVE_INFINITY: Float
القيمة المُعادة
عدد من النوع Float
.
أمثلة
استخدام الثابتة NEGATIVE_INFINITY
fun main(args: Array<String>) {
println(Float.NEGATIVE_INFINITY )// -Infinity
}
أنظر أيضًا
POSITIVE_INFINITY
: هي ثابتة تحتوي قيمة اللانهاية الموجبة للنوعFloat