Discuss, Learn and be Happy דיון בשאלות

help brightness_4 brightness_7 format_textdirection_r_to_l format_textdirection_l_to_r

מהי העדיפות של הThread בסוף תוכנית זו?

1
done
Explanation: The output of program is Thread[main,5,main], in this priority assigned to the thread is 5. It’s the default value. Since we have not named the thread they are named by the group to they belong i:e main method.
by
מיין לפי
by Ido Doron
Ido Doron 0 נקודות · יותר מ-6 חודשים
מוניטין: 1
יש למישהו הסבר?
by
by Omri Peretz
Omri Peretz 1 נקודות · יותר מ-6 חודשים
מוניטין: 59
העדיפות הדיפולטיבית היא 5
by

מהו שם הThread בסוף תוכנית זו?

1
done
Explanation: The output of program is Thread[main,5,main], Since we have not explicitly named the thread they are named by the group to they belong i:e main method. Hence they are named ‘main’.
by
מיין לפי

מה דורש פחות משאבים?

1
done
Explanation: Thread is a lightweight and requires less resources to create and exist in the process. Thread shares the process resources.
by
מיין לפי
by Lior Linoi Aftabi
Lior Linoi Aftabi 0 נקודות · יותר מ-6 חודשים
מוניטין: 70
מישהו יכול להסביר למה זו התשובה? לא יכול להיות PROCESS קטן שצורך פחות משאבים מTHREAD ממש כבד?
by
by Manuel Ruffieux
Manuel Ruffieux 1 נקודות · יותר מ-6 חודשים
מוניטין: 270
ישמצב שכן אבל זה כבר מקרה קצה באופן כללי טרד זה משהו קל ופרוסס כבד נראהלי במערכות הפעלה לימדו את זה יותר סבבה ויש במצגות הסבר על איך כל אחד מהם בנוי מבחינת זכרונות וכו
by
by Guy Biton
Guy Biton 0 נקודות · יותר מ-6 חודשים
מוניטין: 34
כן כמו שלימדו במערכות הפעלה TCB קטן מה PCB (מכיל פחות משאבים)
by

מה לא מונע מ- JVM להפסיק?

1
done
Explanation: Daemon thread runs in the background and does not prevent JVM from terminating. Child of daemon thread is also daemon thread.
by
מיין לפי
by Omer Laufer
Omer Laufer 0 נקודות · יותר מ-6 חודשים
מוניטין: 16
למה בדיוק הוא פשוט יסיים אית אחרי thread רגיל לא?
by
by עמית פרפרה
עמית פרפרה 0 נקודות · יותר מ-6 חודשים
מוניטין: 0
JVM יסיים כאשר כל התרדים יפסיקו, חוץ מDeamon Thread שהוא לא יחכה שיפסיק, JVM מפסיק כשהוא רוצה בלי להתחשב בו
by

מה מחליט על עדיפות הThread?

1
done
Explanation: Thread scheduler decides the priority of the thread execution. This cannot guarantee that higher priority thread will be executed first, it depends on thread scheduler implementation that is OS dependent.
by
מיין לפי
by Gil Ari Agmon
Gil Ari Agmon 0 נקודות · יותר מ-6 חודשים
מוניטין: 90
נראה לי הכוונה בשאלה זה מי בוחר את התיעדוף של הוצאת טרדים מהתור או משהו בסגנון, כי את הPriority לא הScheduler קובע
by

מה נכון לגבי חיתוך זמן (time slicing)?

1
done
Explanation: Time slicing is the process to divide the available CPU time to available runnable thread.
by
מיין לפי

Deadlock הוא מצב כאשר Thread1 מחכה לThread2 אחר שישחרר אובייקט שנרכש על ידיו ולהפך.

1
done
Explanation: Deadlock is java programming situation where one thread waits for an object lock that is acquired by other thread and vice-versa.
by
מיין לפי

מה לא צריך לעשות כדי למנוע Deadlock?

1
done
Explanation: To avoid deadlock situation in Java programming do not execute foreign code while holding a lock.
by
מיין לפי

מה נכון לגבי threading?

1
done
Explanation: start() eventually calls run() method. Start() method creates thread and calls the code written inside run method.
by
מיין לפי
by Dor Shireto
Dor Shireto 2 נקודות · יותר מ-6 חודשים
מוניטין: 48
אפשר לקרוא לשיטרה run ללא שימוש במתודת start https://www.geeksforgeeks.org/difference-between-thread-start-and-thread-run-in-java/
by
by Lior Savchenko
Lior Savchenko 0 נקודות · יותר מ-6 חודשים
מוניטין: 21
true story
by
by Dor Shireto
Dor Shireto -1 נקודות · יותר מ-6 חודשים
מוניטין: 48
Amen to that
by
by Ron Tyntarev
Ron Tyntarev 0 נקודות · יותר מ-6 חודשים
מוניטין: 75
כן,אבל אז אתה לא מייצר טרד חדש,אלא זה פשוט ירוץ בצורה סדרתית
by
by Dor Shireto
Dor Shireto 1 נקודות · יותר מ-6 חודשים
מוניטין: 48
זה עדיין לא אומר ש"אפשר לקרוא לשיטה ()run ללא קריאה לשיטה ()start" הוא משפט לא נכון
by

איזה מהבאים הוא בנאי הנכון עבור thread?

1
done
Explanation: Thread(Runnable a, String str) is a valid constructor for thread. Thread() is also a valid constructor.
by
מיין לפי