views:

43

answers:

1

What do you think about the concept of using ORO instead of traditional Garbage Collecting? It doesn't seem to be widely adopted, and is more or less argumentative, but it can provide these benefits as I know:

  • Synchronous execution of code: your program will always take known amoun of time to execute.
  • Simplification of platform, you'r working with.
+1  A: 

Seems to be than it development platform dependent and task dependent. So I think that ORO and GC must not be opposed, but used together - ORO for pure local object cleanup, and GC for global objects and objects, passed by reference.

Victor Vostrikov
Do you have an example of such GC/ORO composition?
Bubba88
Currently I have no any relevant example :-\
Victor Vostrikov