עבור לתוכן
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.

מה תפקידו של ה-destructor ב-c++?

Featured Replies

פורסם

נניח שבניתי class מסויים:

class list {

private:

int wanted;

int wanted1;

int length1;

int currlocation;

public:

chain *previ;

chain *anchor;

chain *curr;

list(int);

~list();

void clear();

void insert(const elem);

};

איך אני צריך להגדיר את ה-destructor כך שישחרר לי את הזיכרון שנתפס ע"י פוינטר?

פורסם

פוינטר לא תופס זיכרון מעבר ל-32 ביט שהוא לוקח, והוא משוחרר אוטומטית.

במידה והגדרת בלוק דינאמי אליו הפוינטר יצביע (בעזרת malloc או new) אתה תרצה לשחרר את הזיכרון הזה במידה והרגת את ה-class.

לכן אתה מגדיר פונקצית destroctor שתשחרר את היזכרון הדינאמי שהקצת.

פורסם
  • מחבר

השאלה היא מה התחביר של השחרור? אם הגדרתי את הפוינטר כ-new.

פורסם

אתה עושה לו פשוט delete

אתה כותב פונקציה שהמבנה שלה בדיוק כמו ה-constructor רק עם גל לפני

דוגמא פשוטה ל-class

class String {

...

char* val;

String();

~String();

}

String::String() {

val = new char[10];

}

String::~String() {

if(val) delete[] val;

}

ארכיון

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

דיונים חדשים

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.