• 0
  • مالي خلق
  • أتهاوش
  • متضايق
  • مريض
  • مستانس
  • مستغرب
  • مشتط
  • أسولف
  • مغرم
  • معصب
  • منحرج
  • آكل
  • ابكي
  • ارقص
  • اصلي
  • استهبل
  • اضحك
  • اضحك  2
  • تعجبني
  • بضبطلك
  • رايق
  • زعلان
  • عبقري
  • نايم
  • طبيعي
  • كشخة
  • النتائج 1 إلى 4 من 4

    الموضوع: استفسار بسيط

    1. #1
      التسجيل
      28-05-2004
      المشاركات
      1
      المواضيع
      1
      شكر / اعجاب مشاركة

      استفسار بسيط

      السلام عليكم
      انا عضو جديد ارجو ان تقبلوني

      احب ان استفسر من محترفي جافا عن Garbage collector او ما يسمى بمجمع النفايات وماهية دوره عند امتلاء الذاكرة

    2. #2
      التسجيل
      08-06-2004
      الدولة
      فلسطين
      المشاركات
      14
      المواضيع
      2
      شكر / اعجاب مشاركة

      Re: استفسار بسيط

      Hi I will give you the answer soon

    3. #3
      التسجيل
      08-06-2004
      الدولة
      فلسطين
      المشاركات
      14
      المواضيع
      2
      شكر / اعجاب مشاركة

      Exclamation Re: استفسار بسيط

      DEAR NEW mEMBER...
      Salam,
      its known that JAVA had elimenated pointers in
      C language, and introduced a new way of defining
      variables- by creating OBJECTS


      an object is a pool of memory that is referenced
      by variable name ( passed by reference).


      suppose you defined a String object :

      String s = new String("Hi");

      this means that s points to Hi,
      now notice:


      s = new String ("welcome");

      what happens then??
      s variable will leave pointing to "Hi", and
      points to a new memory pool containing "welcome"


      "Hi" will remain in memory without being freed,

      so Garbage collection 'collect' all variables
      that lost thier reference and free thiert space
      and resources again.


      Grabage Collection is one reason why Java runs
      slow.



      for any further quastions email me at mavrikil@yahoo.com

      thank you , Ala' M. Ayyad - Palestine / Al Quds

    4. #4
      التسجيل
      04-02-2004
      المشاركات
      10
      المواضيع
      5
      شكر / اعجاب مشاركة

      Re: استفسار بسيط

      مشكوور على الشرح

    ضوابط المشاركة

    • لا تستطيع إضافة مواضيع جديدة
    • لا تستطيع الرد على المواضيع
    • لا تستطيع إرفاق ملفات
    • لا تستطيع تعديل مشاركاتك
    •