الفرق بين المراجعتين لصفحة: «Kotlin/Byte/MIN VALUE»
لا ملخص تعديل |
جميل-بيلوني (نقاش | مساهمات) ط تصحيح بسيط. |
||
(1 مراجعات متوسطة بواسطة نفس المستخدم غير معروضة) | |||
سطر 1: | سطر 1: | ||
<noinclude>{{DISPLAYTITLE: | <noinclude>{{DISPLAYTITLE: الثابت <code>Byte.MIN_VALUE</code> في Kotlin}}</noinclude> | ||
<code>MIN_VALUE</code> | يمثِّل الثابت <code>Byte.MIN_VALUE</code> أصغر قيمة يمكن تخزينها في النوع <code>[[Kotlin/Byte|Byte]]</code>. | ||
==البنية العامة== | ==البنية العامة== | ||
<syntaxhighlight lang="kotlin"> | <syntaxhighlight lang="kotlin"> | ||
const val MIN_VALUE: Byte | const val MIN_VALUE: Byte | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==أمثلة== | ==أمثلة== | ||
استعمال الثابت <code>Byte.MIN_VALUE</code> لمعرفة أصغر قيمة يمكن تخزينها في النوع <code>[[Kotlin/Byte|Byte]]</code>:<nowiki/><syntaxhighlight lang="kotlin"> | |||
<nowiki/><syntaxhighlight lang="kotlin"> | fun main(args: Array<String>) { | ||
println(Byte.MIN_VALUE) // -128 | |||
} | |||
</syntaxhighlight> | </syntaxhighlight> | ||
== | ==انظر أيضًا== | ||
*<code>[[Kotlin/Byte/ | *الثابت <code>[[Kotlin/Byte/MAX VALUE|MAX_VALUE]]</code>: يمثِّل أكبر قيمة يمكن تخزينها في النوع <code>[[Kotlin/Byte|Byte]]</code>. | ||
==مصادر== | ==مصادر== | ||
* [https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-byte/-m-i-n_-v-a-l-u-e.html | * [https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-byte/-m-i-n_-v-a-l-u-e.html صفحة الثابت Byte.MIN_VALUE في التوثيق الرسميّ للمكتبة القياسيّة في لغة Kotlin.] | ||
[[تصنيف:Kotlin]] | [[تصنيف:Kotlin]] | ||
[[تصنيف:Kotlin constant]] | [[تصنيف:Kotlin constant]] |