Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
1answer
217 views

Do C# try-finally CERs break in iterators?

Apparently, Constrained Execution Region guarantees do not apply to iterators (probably because of how they are implemented and all), but is this a bug or by design? [See the example below.] i.e. ...
8
votes
1answer
178 views

What is the correct way to free an interface behind an OleVariant?

I am trying to find a safe/deterministic way to release an interface which is encapsulated in an OleVariant. AFAICS Delphi releases interface references at the end of a procedure, but in my case I ...
6
votes
1answer
889 views

C# - What does “destructors are not inherited” actually mean?

Section 10.13, Destructors, of the C# Language Specification 3.0 states the following: Destructors are not inherited. Thus, a class has no destructors other than the one which may be declared in ...
5
votes
4answers
547 views

Unit finalization order for application, compiled with run-time packages?

I need to execute my code after finalization of SysUtils unit. I've placed my code in separate unit and included it first in uses clause of dpr-file, like this: project Project1; uses MyUnit, ...
3
votes
1answer
293 views

Why code in any unit finalization section of a package is not executed at start up?

I have an application that uses statically-linked runtime packages as well as designtime packages that use them. For some reason the code in any unit finalization section is not being run at runtime ...
2
votes
3answers
101 views

Definition: Unfinalized versus finalizable object

In order to understand weak references in Java, I have had to consult the Java Language Specification. The following part, from section 12.6, puzzles me: An unfinalized object has never had its ...
2
votes
8answers
433 views

Finalizer launched while its object was still being used

Summary: C#/.NET is supposed to be garbage collected. C# has a destructor, used to clean resources. What happen when an object A is garbage collected the same line I try to clone one of its variable ...
1
vote
1answer
75 views

What happens to FReachable Objects if they are found to be reachable?

If suppose an object implements the Finalize method but inside it refers an alive static object of the application (bad design! but very possible). Now when GC kicks in and finalises the object by ...
1
vote
5answers
2k views

Delphi and finalization in a unit

I have two units unitA and unitB. Class TFoo is declared in unitB. Is it allways safe to call B.Free in finalization of unitA? How does it depend on in which order unitA and unitB are in dpr? Can ...
0
votes
4answers
155 views

I'm pretty sure finalize is still bad news on later JVMs--is there an alternative?

I would like to implement a ORM-style system that can save updates to POJOs when they are no longer reachable by the caller. I thought the reference classes could do it, but they seem to only enqueue ...
0
votes
0answers
69 views

JNI non-Java class members

I want to create a Java wrapper against some third-party library with C interface. The library operates on a complex Context entity which is essentially a C++ object (C++ is used internally in that ...
0
votes
1answer
147 views

WPF Application initialization and finalization

I am preparing to write a WPF client application that uses ICE (Internet Communication Engine) middleware. ICE requires proper initialization and finalization. All the examples show how to accomplish ...
0
votes
2answers
175 views

Memory leak in VB

We noticed one interesting issue regarding memory management in VB that we do not understand. If anyone could help us with this one, please do. We have a simple class with one single event. We create ...