Explanation: JIT optimizes bytecode to machine specific language code by compiling similar bytecodes at the same time. This reduces overall time taken for compilation of bytecode to machine specific language.
Explanation: main method cannot be private as it is invoked by external method. Other identifier are valid with main method.
מיין לפי
Guy Biton0 נקודות ·
יותר מ-6 חודשים
( תגובות)
מוניטין: 34
כל אחד מהם הוא מזהה חוקי בשיטת main
Liron Miriam Shemen0 נקודות ·
יותר מ-6 חודשים
( תגובות)
מוניטין: 1
מה זה אומר מזהה חוקי?🙈
Guy Biton1 נקודות ·
יותר מ-6 חודשים
( תגובות)
מוניטין: 34
טעות שלי, private זו התשובה פה כי בכרגע שמגדירים את המטודה של main כprivate זה לא נותן להריץ אותה (כי כביכול משהו חיצוני לקלאס שבו היא כתובה מנסה לקרוא לה)
Shay Haroosh-1 נקודות ·
לפני 5 חודשים
( תגובות)
מוניטין: 34
היי גיא, יש פה פער, Private לא יכול להיות מזהה של מיין כי אז הוא לא ירוץ
Explanation: The Java source file contains a header that declares the type of class or interface, its visibility with respect to other classes, its name and any superclass it may extend, or interface it implements.
Explanation: Interpreters read high level language (interprets it) and execute the program. Interpreters are normally not passing through byte-code and jit compilation.
מיין לפי
Gil Ari Agmon0 נקודות ·
יותר מ-6 חודשים
( תגובות)
מוניטין: 90
לפי דעתי זה נכון לגבי interpreter של python, לא של Java.
ב-Java אחרי שלב הקמפול לשפת bytecode שמתאימה ל-JVM שבמחשב, ה-interpreter שנמצא בתוך ה-JVM עובר שורה שורה וממיר את הקוד לשפת מכונה
איזו מהמחלקות הבאות משמשת לפעולת קלט ופלט בעת עבודה עם bytes?