"Garbage collector" is not found on TREX in Korean-English direction
Try Searching In English-Korean (Garbage collector)

Low quality sentence examples

두 가지 종류의 Garbage Collector.
Two kinds of garbage collection.
Garbage collector는 단지 메모리를 관리한다.
The garbage collector only reclaims memory.
CLR(Common Language Runtime)에서 Garbage Collector는 자동화된 메모리 관리자로 기능한다.
In the common language runtime(CLR), the garbage collector serves as an automatic memory manager.
개체를 종료할 수 있으면 가비지 수집기에서 개체의 Finalize 메서드를 실행합니다. When the object is eligible for finalization, the garbage collector runs the Finalize method of the object.
When the object is eligible for finalization, the garbage collector runs the Finalize method of the object.
가비지 수집기에서 현재가 개체를 회수하는 데 가장 적합한 시점인지 결정할 수 있도록 허용합니다. Allows the garbage collector to determine whether the current time is optimal to reclaim objects.
For example, you can use this overload to specify that the garbage collector should determine whether the current time is optimal to reclaim objects.
약한 참조는 가비지 수집기가 개체에 액세스 하려면 애플리케이션 허용 하면서 개체를 수집할 수 있습니다.A weak reference enables the garbage collector to collect an object while still allowing an application to access the object.
Weak references allow the garbage collector to collect the object, but they also allow the application to access the object.
약한 참조는 가비지 수집기가 개체에 액세스 하려면 애플리케이션 허용 하면서 개체를 수집할 수 있습니다.A weak reference enables the garbage collector to collect an object while still allowing an application to access the object.
A weak reference allows the garbage collector to collect an object while still allowing an application to access the object.
이 카운터는 일반적으로 가비지 수집기에서 응용 프로그램을 대신하여 메모리를 수집 및 압축하기 위해 수행한 작업을 나타냅니다. This counter usually indicates the work done by the garbage collector to collect and compact memory on behalf of the application.
This counter usually indicates the work done by the garbage collector to collect and compact memory on behalf of the application.
그러나 강력한 참조를 다시 설정하기 전에 가비지 수집기가 먼저 개체에 연결될 위험이 항상 존재합니다. However, there is always the risk that the garbage collector will get to the object first before a strong reference is reestablished.
However, there is always the risk that the garbage collector will get to the object first before a strong reference is re-established.
you can rely on. NET's garbage collector to handle memory management.
you can rely on the. NET Framework's garbage collector to handle memory management.
you can rely on. NET's garbage collector to handle memory management.
you can rely on the. NET Framework's garbage collector to implicitly perform all the necessary memory management tasks.
애플리케이션에서 새 개체를 만들려고 할 때 세대 0이 가득 찬 경우, 가비지 수집기에서는 개체 할당할 주소 공간이 세대 0에 존재하지 않음을 감지합니다. If an application attempts to create a new object when generation 0 is full, the garbage collector discovers that there is no address space remaining in generation 0 to allocate for the object.
If an application attempts to create a new object when generation 0 is full, the garbage collector discovers that there is no address space remaining in generation 0 to allocate for the object.
Dispose implementation to prevent the garbage collector from calling Object.
method from the IDisposable. Dispose method to prevent the garbage collector from calling Object.
가비지 수집기는 세대 0에 처음으로 수집을 수행한 다음 연결할 수 있는 개체들을 세대 1로 승격시키지만, 아직도 관리되는 힙에 남아있는 개체들은 세대 0으로 간주합니다. After the garbage collector performs its first collection of generation 0 and promotes the reachable objects to generation 1, it considers the remainder of the managed heap generation 0.
After the garbage collector performs its first collection of generation 0 and promotes the reachable objects to generation 1, it considers the remainder of the managed heap generation 0.
free the unmanaged objects, because the garbage collector tracks memory only on the managed heap.
their native file handles, you have to explicitly free the unmanaged objects, because the garbage collector tracks memory only on the managed heap.
예를 들어, 세대 0에서 수집을 수행 했 음 에 도 불구 하 고 애플리케이션 에서 새 개체 를 성공 적 으로 만드 는 데 필요 한 충분 한 메모리 를 확보 할 수 없 는 경우, 가비지 수집 기 는 세대 1 에서 세대 2 의 순서 로 수집 을 수행 할 수 있 습니다. For example, if a collection of generation 0 does not reclaim enough memory for the application to successfully complete its attempt to create a new object, the garbage collector can perform a collection of generation 1,
For example, if a collection of generation 0 does not reclaim enough memory for the application to successfully complete its attempt to create a new object, the garbage collector can perform a collection of generation 1,
전체 힙보다 일부 관리되는 힙을 압축하는 것이 더 빠르기 때문에 가비지 수집기는 수집을 수행할 때마다 이 체계를 사용하여 전체 관리되는 힙에서 메모리를 해제하는 대신 특정 세대에서 메모리를 해제할 수 있습니다. Because it is faster to compact a portion of the managed heap than the entire heap, this scheme allows the garbage collector to release the memory in a specific generation rather than release the memory for the entire managed heap each time it performs a collection.
Because it is faster to compact a portion of the managed heap than the entire heap, this scheme allows the garbage collector to release the memory in a specific generation rather than release the memory for the entire managed heap each time it performs a collection.