Unreachable memory

http://dbpedia.org/resource/Unreachable_memory an entity of type: Settlement

في علوم الحاسب، الذاكرة غير القابلة للوصول (Unreachable memory) هي ذاكرة موجودة دينماكيا في مكان لا يمكن للبرنامج الذي أوجدها الوصول إليها حيث لا يملك مؤشرات ترجع إليها. وبالمثل، الكائن غير القابل للوصول هي الكائنات الا تملك مراجع للوصول إليها. والذاكرة غير القابلة للوصول هي ذاكرة دينماكية التي لا يمكن للبرنامج الوصول إليها مباشرة، ولا عن طريق كائن يمكنة الوصول إليها مباشرة، ويتبعه سلسلة من المؤشرات المرجعية. rdf:langString
In computer programming, unreachable memory is a block of dynamically allocated memory where the program that allocated the memory no longer has any reachable pointer that refers to it. Similarly, an unreachable object is a dynamically allocated object that has no reachable reference to it. Informally, unreachable memory is dynamic memory that the program cannot reach directly, nor get to by starting at an object it can reach directly, and then following a chain of pointer references. Unreachable memory (in languages, like C, that do not reclaim) is often associated with software aging. rdf:langString
在计算机科学中,不可访问内存是指一组没有任何可访问指针指向的由计算机程序进行动态分配的内存块。类似的,一个不可访问对象是指没有可访问引用型指向的动态分配对象。通俗来说,不可访问内存是程序无法直接访问的动态内存,同时也无法通过指针指向一个可访问的起始对象来进行访问。 动态内存分配的实现是采用了垃圾回收机制,在一个对象不可访问后,它会被回收。垃圾收集器能决定是否一个对象还是可访问的;任何被确定不可访问的对象将会被释放。在许多编程语言中(例如:Java,C#,D语言,Dylan)都使用了自动垃圾回收机制。 相反的,在动态内存分配机制中,当需要明确释放的内存变得不可访问时,此内存可以不再明确释放。在使用人工内存管理中,系统中的不可访问内存会导致内存泄漏。 不可访问内存往往和有关。 rdf:langString
rdf:langString ذاكرة غير قابلة للوصول
rdf:langString Unreachable memory
rdf:langString 不可访问内存
xsd:integer 3707145
xsd:integer 1117863331
rdf:langString في علوم الحاسب، الذاكرة غير القابلة للوصول (Unreachable memory) هي ذاكرة موجودة دينماكيا في مكان لا يمكن للبرنامج الذي أوجدها الوصول إليها حيث لا يملك مؤشرات ترجع إليها. وبالمثل، الكائن غير القابل للوصول هي الكائنات الا تملك مراجع للوصول إليها. والذاكرة غير القابلة للوصول هي ذاكرة دينماكية التي لا يمكن للبرنامج الوصول إليها مباشرة، ولا عن طريق كائن يمكنة الوصول إليها مباشرة، ويتبعه سلسلة من المؤشرات المرجعية. في تطبيقات تحديد موقع الذاكرة الدينماكية التي تستخدم في مجمع القمامة (garbage collector)، يتم إصلاح الكائنات بعد أن تكون غير قابلة للوصول. مجمع القمامة يستطيع أن يحدد إذا كان الكائن غير قابل للوصول، وكل كائن يتم تصنيفة على أنة غي قابل للوصول يتم حذف مكانة في الذاكرة. العديد من لغات البرمجة تستخدم تجميع القمامة تلقائياً مثل جافا، سي#، دي، . في المقابل، عندما تكون الذاكرة غير قابلة للوصول في تطبيقات الذاكرة الدينماكية التي تتطلب حذف المكان، فأنة لا يمكن حذف المكان بشكل كامل. الذاكرة غير القابلة للوصول في النظام الذي يستخدم إدارة الذاكرة يدوياً تتسبب في تسرب الذاكرة. بعض مجمعات القمامة توجد مراجع ضعيفة. إذا أمكن الوصول إلى كائن من خلال مرجع ضعيف أو سلسلة من المراجع تحتوي على مرجع ضعيف، يطلق على هذا الكائن ضعيف الوصول. يعالج جامع البيانات غير الهامة الرسم البياني لكائن ضعيف المرجع على أنة غير قابل للوصول ويحذف موقعة. (وبالعكس، المراجع التي تمنع الكائن من أن يجمع على أنة قمامة تسمى مراجع قوية، الكائن غير القابل للوصول هو لا يمكن الوصول إليه من أي سلسلة والتي تحتوي فقط على مراجع قوية). بعض لغات البرمجة كائنية التوجه التي تستخدم تجميع البيانات غير الهامة مثل جافا وبايثون تتميز بالمراجع الضعيفة، حزمة الجافا منصة جافا تدعم المراجع اللبينة (softly)، الضعيفة (weak)، والوهمية(phantom)، مما أدى إلى حالات وصول إضافيى للكائن وهي لين الوصول (softly reachable) ووهمي الوصول (phantom reachable).
rdf:langString In computer programming, unreachable memory is a block of dynamically allocated memory where the program that allocated the memory no longer has any reachable pointer that refers to it. Similarly, an unreachable object is a dynamically allocated object that has no reachable reference to it. Informally, unreachable memory is dynamic memory that the program cannot reach directly, nor get to by starting at an object it can reach directly, and then following a chain of pointer references. In dynamic memory allocation implementations that employ a garbage collector, objects are reclaimed after they become unreachable. The garbage collector is able to determine if an object is reachable; any object that is determined to no longer be reachable can be deallocated. Many programming languages (for example, Java, C#, D, Dylan, Julia) use automatic garbage collection. In contrast, when memory becomes unreachable in dynamic memory allocation implementations that require explicit deallocation, the memory can no longer be explicitly deallocated. Unreachable memory in systems that use manual memory management results in a memory leak. Some garbage collectors implement weak references. If an object is reachable only through either weak references or chains of references that include a weak reference, then the object is said to be weakly reachable. The garbage collector can treat a weakly reachable object graph as unreachable and deallocate it. (Conversely, references that prevent an object from being garbage collected are called strong references; a weakly reachable object is unreachable by any chain consisting only of strong references.) Some garbage-collected object-oriented languages, such as Java and Python, feature weak references. The Java package java.lang.ref supports soft, weak and phantom references, resulting in the additional object reachability states softly reachable and phantom reachable. Unreachable memory (in languages, like C, that do not reclaim) is often associated with software aging.
rdf:langString 在计算机科学中,不可访问内存是指一组没有任何可访问指针指向的由计算机程序进行动态分配的内存块。类似的,一个不可访问对象是指没有可访问引用型指向的动态分配对象。通俗来说,不可访问内存是程序无法直接访问的动态内存,同时也无法通过指针指向一个可访问的起始对象来进行访问。 动态内存分配的实现是采用了垃圾回收机制,在一个对象不可访问后,它会被回收。垃圾收集器能决定是否一个对象还是可访问的;任何被确定不可访问的对象将会被释放。在许多编程语言中(例如:Java,C#,D语言,Dylan)都使用了自动垃圾回收机制。 相反的,在动态内存分配机制中,当需要明确释放的内存变得不可访问时,此内存可以不再明确释放。在使用人工内存管理中,系统中的不可访问内存会导致内存泄漏。 一些垃圾收集器使用弱引用。如果一个对象能够通过弱引用或者包含弱引用的链接,那么这个对象可以被称为弱访问。垃圾收集器能够把弱访问的对象图视为不可访问的,并且释放它。(反过来说,防止对象被当作垃圾收集的引用被称为强引用;通过只含有强引用的链接来访问的弱可访问对象是不可访问的。)一些垃圾回收的面向对象语言,例如Java和Python,拥有弱引用的特性。java.lang.ref提供了软引用,弱引用和虚引用,产生了其他对象访问状态可软访问和可虚访问。 不可访问内存往往和有关。
xsd:nonNegativeInteger 3374

data from the linked data cloud