الإصدار JScript شبكة مرحبا!
البرنامج وحدة التحكم التالي هو الإصدار JScript البرنامج "World مرحبا!" التقليدية، الذي يعرض سلسلة Hello World!.
المثال
// A "Hello World!" program in JScript.
print("Hello World!");
نقاط هامة في البرنامج هي التالية:
التعليقات
الإخراج
التحويل البرمجي و التنفيذ
التعليقات
The أول خط of the مثال يحتوي على a تعليق. Since the compiler ignores the تعليق, you can write أي نص. This تعليق describes the purpose of the برنامج.
// A "Hello World!" program in JScript.
The مزدوج إعادة توجيه مكالمة slash (//) means that the rest of the خط هو a تعليق. يمكنك جعل خط بالكامل كتعليق أو يمكنك إلحاق تعليق بنهاية كشف أخر ، كما يلي:
var area = Math.PI*r*r; // Area of a circle with radius r.
You can also استخدم multiline تعليقات. A multiline JScript تعليق begins مع a إعادة توجيه مكالمة slash و علامة النجمة (*) (/*), و ends مع the عكسى (*/).
/*
Multiline comments allow you to write long comments.
They can also be used to "comment out" blocks of code.
*/
لمزيد من المعلومات، راجع تعليقات JScript.
الإخراج
This مثال uses the طباعة كشف إلى عرض the سلسلة Hello World!:
print("Hello World!");
For المزيد معلومات, see طباعة كشف.
There are غير ذلك ways for a برنامج إلى communicate مع the مستخدم. The فئة System.Console exposes وظائف و خصائص that facilitate تفاعل مع the person using the console. لمزيد من المعلومات، راجع Console. The فئة System.Windows.Forms.MessageBox exposes وظائف و خصائص that facilitate تفاعل مع the مستخدم using Windows Forms. لمزيد من المعلومات، راجع System.Windows.Forms.
التحويل البرمجي و التنفيذ
You can يحول برمجياً the "Hello World!" برنامج using the الأمر خط compiler.
للتـحويل البرمجي وتشغيل البرنامج من خط الأوامر
إنشاء the الملف المصدر using أي محرر نص و حفظ it using a اسم الملف such كـ Hello.js.
إلى يبدأ the compiler, Enter الزر the following at the الأمر تعجيل:
jsc Hello.js
ملاحظة
You should يحول برمجياً the برنامج من the Visual Studio الأمر تعجيل. لمزيد من المعلومات، راجع كيفية القيام بما يلي: يحول برمجياً تعليمات برمجية JScript من سطر الأوامر.
If your برنامج does لا يحتوي على compilation أخطاء, the compiler creates a Hello.exe ملف.
إلى تشغيل البرنامج، قم بإدخال التالي في تعجيل الأوامر:
Hello