עבור לתוכן
View in the app

A better way to browse. Learn more.

HWzone

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

protected ב-Java

Featured Replies

פורסם

ממה שהבנתי, כשמגדירים לפונקציה בקרת גישה מסוג protected, זה אומר שאפשר לגשת אליה גם ממחלקות שיורשות אותה (subclasses) בחבילות (packages) אחרות. (הבנתי נכון?)

כתבתי 2 מחלקות ב-2 חבילות שונות כדי לבדוק את זה:

package b;

public class Toast
{
protected int rand()
{
return (int)(Math.random()*100);
}
}

package a;

public class Test extends b.Toast {
static b.Toast x = new b.Toast();
public static void main(String[] args)
{
System.out.println(x.rand());
}
}

אך אני מקבל הודעת שגיאה שאומרת שאין גישה לפונקציה rand, למרות ש-Test היא subclass של Toast... מה אני מפספס פה?

פורסם

protected מאפשר לך לגשת רק לאיברים של האובייקט עצמו, ולא של אובייקטים אחרים מאותו טיפוס. כלומר, קוד כזה יעבוד:

public class Test extends b.Toast {
public int r() {
return rand();
}
}

פורסם
  • מחבר

אוקיי, נראה לי שהבנתי.. תודה

ארכיון

דיון זה הועבר לארכיון ולא ניתן להוסיף בו תגובות חדשות.

דיונים חדשים

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.